ScriptContext

แสดงที่เลิกใช้งานแล้ว

*เนื้อหานี้จะพร้อมใช้งานในภาษาที่คุณเลือกในเร็วๆ นี้

ไม่สามารถสร้าง
บริการ
ไม่ซ้ำ

This service controls all BaseScript objects. Most of the properties and methods of this service are locked for internal use.

สรุป

วิธีการ

  • SetTimeout(seconds : number):void
    การรักษาความปลอดภัยของปลั๊กอิน

    Limits how long a script is allowed to run without yielding.

คุณสมบัติ

วิธีการ

SetTimeout

void
การรักษาความปลอดภัยของปลั๊กอิน

Limits how long a script is allowed to run without yielding.

พารามิเตอร์

seconds: number

ส่งค่ากลับ

void

อีเวนต์

Error

Fired when an error occurs.

พารามิเตอร์

message: string
stackTrace: string
script: Instance

ตัวอย่างโค้ด

ScriptContext.Error

local ScriptContext = game:GetService("ScriptContext")
local function onError(message, trace, script)
print(script:GetFullName(), "errored!")
print("Reason:", message)
print("Trace:", trace)
end
ScriptContext.Error:Connect(onError)
-- Somewhere, in another script
error("Error occurred!")