Skip to content

Instantly share code, notes, and snippets.

@casualdegenerate
Last active March 9, 2022 20:04
Show Gist options
  • Save casualdegenerate/ad944230cd746dc2af3f836a94df81ab to your computer and use it in GitHub Desktop.
Save casualdegenerate/ad944230cd746dc2af3f836a94df81ab to your computer and use it in GitHub Desktop.
Example code on how I got the entire list, and not look like a dumbass trying it from hand.
-- // slua (https://x.synapse.to)
print('slua https://x.synapse.to', 'Commands Copy')
local o = ''
for _, v in next, game:GetService("Players").LocalPlayer.PlayerGui.CommandsGui.TextButton.Frame.Frame:GetChildren() do
o ..= v.Text .. '\n'
end
setclipboard(o)
@casualdegenerate
Copy link
Author

Had a typo, with prob all my scripts that included the print on where to get slua and it said syanpse lol

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment