ScriptContext
แสดงที่เลิกใช้งานแล้ว
*เนื้อหานี้จะพร้อมใช้งานในภาษาที่คุณเลือกในเร็วๆ นี้
This service controls all BaseScript objects. Most of the properties and methods of this service are locked for internal use.
สรุป
วิธีการ
Limits how long a script is allowed to run without yielding.
อีเวนต์
Fired when an error occurs.
คุณสมบัติ
วิธีการ
SetTimeout
void
Limits how long a script is allowed to run without yielding.
พารามิเตอร์
ส่งค่ากลับ
void
อีเวนต์
Error
Fired when an error occurs.
พารามิเตอร์
ตัวอย่างโค้ด
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!")