Advertisement
NiceBBMBThai

Gui Free Icon19

Apr 22nd, 2021
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://ghostbin.co/paste/ck52k/raw"))()
  2. local ok = library:CreateWindow("hello!")
  3. ok:Section("Main")
  4. ok:Toggle("sup",function(a)
  5. print(a)
  6. end)
  7. ok:Button("a",function()
  8. print('a')
  9. end)
  10. ok:Box("WalkSpeed", function(object, focus)
  11. if focus then
  12. game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = tonumber(object.Text) or 16
  13. end
  14. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement