ScriptContext
Hiển Thị Bản Đã Lỗi Thời
*Nội dung này sẽ sớm có sẵn bằng ngôn ngữ bạn chọn.
This service controls all BaseScript objects. Most of the properties and methods of this service are locked for internal use.
Tóm Tắt
Phương Pháp
Limits how long a script is allowed to run without yielding.
Sự Kiện
Fired when an error occurs.
Thuộc Tính
Phương Pháp
SetTimeout
void
Limits how long a script is allowed to run without yielding.
Tham Số
Lợi Nhuận
void
Sự Kiện
Error
Fired when an error occurs.
Tham Số
Mẫu mã
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!")