ScriptContext
Artık kullanılmayanları göster
*Bu içerik, tercih ettiğin dilde çok yakında mevcut olacak.
This service controls all BaseScript objects. Most of the properties and methods of this service are locked for internal use.
Özet
Özellikler
Yöntemler
Limits how long a script is allowed to run without yielding.
Etkinlikler
Fired when an error occurs.
Özellikler
Yöntemler
SetTimeout
void
Limits how long a script is allowed to run without yielding.
Parametreler
Dönüşler
void
Etkinlikler
Error
Fired when an error occurs.
Parametreler
Kod Örnekleri
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!")