Advertisement
NiceBBMBThai

Gui Free Icon18

Apr 22nd, 2021
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/NarwhalHacks/DevonteSite/master/Ui%20Lib"))()
  2.  
  3. local a = Library:Window("Game")
  4.  
  5. local b = a:Tab("Main")
  6.  
  7. b:Button("Print", function()
  8. print("Print")
  9. end)
  10.  
  11. b:Toggle("State", function(state)
  12. print(state)
  13. end)
  14.  
  15. b:Slider("WalkSpeed", 0, 200, 16, function(value)
  16. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = value
  17. end)
  18.  
  19. b:Box("JumpPower", "Value", function(value)
  20. game.Players.LocalPlayer.Character.Humanoid.JumpPower = value
  21. end)
  22.  
  23. b:Label("UI : Devonte")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement