Advertisement
p1rt

WalkSpeed gui

Dec 27th, 2022 (edited)
368
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Robojini/Tuturial_UI_Library/main/UI_Template_1"))()
  2.  
  3. local Window = Library.CreateLib("made by p1rt", "RJTheme7")
  4.  
  5. local Tab = Window:NewTab("WalkSpeed")
  6.  
  7. local Section = Tab:NewSection("made by p1rt")
  8.  
  9. Section:NewToggle("WalkSpeed toggle", " ", function(state)
  10. if state then
  11. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 200
  12. else
  13. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  14. end
  15. end)
  16.  
  17. Section:NewLabel("Discord Link")
  18. Section:NewButton("https://discord.gg/sBae3DayuK", "Printed link in F9", function()
  19. print("https://discord.gg/sBae3DayuK")
  20. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement