ScriptContext
Pokaż przestarzałe
*Ta zawartość będzie dostępna wkrótce w wybranym przez ciebie języku.
This service controls all BaseScript objects. Most of the properties and methods of this service are locked for internal use.
Podsumowanie
Metody
Limits how long a script is allowed to run without yielding.
Zdarzenia
Fired when an error occurs.
Właściwości
Metody
SetTimeout
void
Limits how long a script is allowed to run without yielding.
Parametry
Zwroty
void
Zdarzenia
Error
Fired when an error occurs.
Parametry
Przykłady kodu
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!")