Guest User

Roblox Script for all games

a guest
Dec 28th, 2022
847
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Robojini/Tuturial_UI_Library/main/UI_Template_1"))()
  2.  
  3. local Window = Library.CreateLib("SW4T Hub", "RJTheme1")
  4.  
  5. local Tab = Window:NewTab("Powers")
  6.  
  7.  
  8. local Section = Tab:NewSection("Stuff")
  9.  
  10. Section:NewSlider("WalkSpeed", "Fast Walkspeed", 1000, 16, function(s) -- 500 (Макс. значение) | 0 (Мин. значение)
  11.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  12. end)
  13. Section:NewSlider("JumpPower", "Big Jump", 1000, 50, function(s) -- 500 (Макс. значение) | 0 (Мин. значение)
  14.     game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  15. end)
  16.  
  17. local Tab = Window:NewTab("Coming Soon")
  18. --da end--
Advertisement
Add Comment
Please, Sign In to add comment