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.

Không Thể Tạo
Dịch Vụ
Không Sao Chép

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

Thuộc Tính

Phương Pháp

SetTimeout

void
Bảo Mật Plugin

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

Tham Số

seconds: number

Lợi Nhuận

void

Sự Kiện

Error

Fired when an error occurs.

Tham Số

message: string
stackTrace: string
script: Instance

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!")