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