Bug fixes.

This commit is contained in:
Max
2022-12-27 06:36:50 -06:00
parent 7710cfba59
commit 4a360e4033
15 changed files with 126 additions and 64 deletions

View File

@ -1,28 +0,0 @@
{
"version": "2.0.0",
"tasks":
[
{
"type": "shell",
"label": "Build Plugin",
"command": "rojo build --output GenerateApiDump.rbxm",
"group": "build"
},
{
"type": "shell",
"label": "Build and Test Plugin",
"command": "powershell -ExecutionPolicy ByPass -File DeployToStudio.ps1",
"dependsOn": ["Build Plugin"],
"group":
{
"kind": "build",
"isDefault": true
}
}
]
}

View File

@ -1,4 +0,0 @@
$pluginName = "GenerateApiDump.rbxm"
$destPath = "$env:localappdata\Roblox\Plugins\" + $pluginName
Copy-Item -Path $pluginName -Destination $destPath

Binary file not shown.

View File

@ -14,6 +14,7 @@ local singletons = {
ParabolaAdornment = Instance.new("BoxHandleAdornment"), -- close enough
StarterPlayerScripts = StarterPlayer:WaitForChild("StarterPlayerScripts"),
StarterCharacterScripts = StarterPlayer:WaitForChild("StarterCharacterScripts"),
BubbleChatConfiguration = TextChatService:WaitForChild("BubbleChatConfiguration", 10),
ChatWindowConfiguration = TextChatService:WaitForChild("ChatWindowConfiguration", 10),
ChatInputBarConfiguration = TextChatService:WaitForChild("ChatInputBarConfiguration", 10),
}

2
Plugins/make Normal file
View File

@ -0,0 +1,2 @@
#!/bin/sh
rojo build --output $LOCALAPPDATA/Roblox/Plugins/GenerateApiDump.rbxm