Add ScriptDebugger

This commit is contained in:
Max
2021-08-09 12:22:26 -05:00
parent 712f1c438c
commit 3355c44190
6 changed files with 36 additions and 2 deletions

View File

@ -491,6 +491,15 @@ return
}
};
ScriptDebugger =
{
Add =
{
CoreScriptIdentifier = "string";
ScriptGuid = "string";
}
};
Smoke =
{
Add =

View File

@ -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