Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local function runScript()
- -- Runs the script from the pastebin link
- loadstring(game:HttpGet("https://pastebin.com/raw/iZpxrs6M", true))()
- end
- -- Bind to chat command "/ui"
- game.Players.LocalPlayer.Chatted:Connect(function(message)
- if message == "/ui" then
- runScript()
- end
- end)
- -- Bind to keypress (F4 key)
- game:GetService("UserInputService").InputBegan:Connect(function(input, gameProcessed)
- if not gameProcessed and input.KeyCode == Enum.KeyCode.F4 then
- runScript()
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment