ScriptContext

显示已弃用

*此内容使用人工智能(Beta)翻译,可能包含错误。若要查看英文页面,请点按 此处

无法创建
服务
未复制

此服务控制所有 BaseScript 对象。 大多数此服务的属性和方法都是内部使用。

概要

方法

  • SetTimeout(seconds : number):void
    插件安全性

    限制脚本在不提供输出的情况下可以运行的时间。

属性

方法

SetTimeout

void
插件安全性

限制脚本在不提供输出的情况下可以运行的时间。

参数

seconds: number

返回

void

活动

Error

发生错误时。

参数

message: string
stackTrace: string
script: Instance

代码示例

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