Add ScriptDebugger
This commit is contained in:
@ -491,6 +491,15 @@ return
|
||||
}
|
||||
};
|
||||
|
||||
ScriptDebugger =
|
||||
{
|
||||
Add =
|
||||
{
|
||||
CoreScriptIdentifier = "string";
|
||||
ScriptGuid = "string";
|
||||
}
|
||||
};
|
||||
|
||||
Smoke =
|
||||
{
|
||||
Add =
|
||||
|
@ -16,6 +16,12 @@ local singletons =
|
||||
StarterCharacterScripts = StarterPlayer:WaitForChild("StarterCharacterScripts");
|
||||
}
|
||||
|
||||
local exceptionClasses =
|
||||
{
|
||||
PackageLink = true;
|
||||
ScriptDebugger = true;
|
||||
}
|
||||
|
||||
local numberTypes =
|
||||
{
|
||||
int = true;
|
||||
@ -403,7 +409,7 @@ local function generateClasses()
|
||||
end
|
||||
end
|
||||
|
||||
if class.Name == "PackageLink" then
|
||||
if exceptionClasses[class.Name] then
|
||||
registerClass = true
|
||||
end
|
||||
|
||||
|
Reference in New Issue
Block a user