Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Robojini/Tuturial_UI_Library/main/UI_Template_1"))()
- local Window = Library.CreateLib("SW4T Hub", "RJTheme1")
- local Tab = Window:NewTab("Powers")
- local Section = Tab:NewSection("Stuff")
- Section:NewSlider("WalkSpeed", "Fast Walkspeed", 1000, 16, function(s) -- 500 (Макс. значение) | 0 (Мин. значение)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
- end)
- Section:NewSlider("JumpPower", "Big Jump", 1000, 50, function(s) -- 500 (Макс. значение) | 0 (Мин. значение)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
- end)
- local Tab = Window:NewTab("Coming Soon")
- --da end--
Advertisement
Add Comment
Please, Sign In to add comment