Advertisement
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("Tower of hell BY VENERDEX")
- local Tab = Window:NewTab("Speed")
- local Section = Tab:NewSection("WalkSpeed")
- Section:NewSlider("WalkSpeed", " ", 200, 0, function(s)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
- end)
- local Tab = Window:NewTab("Jump")
- local Section = Tab:NewSection("JumpPower")
- Section:NewSlider("JumpPower", " ", 500, 0, function(j)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = j
- end)
- local Tab = Window:NewTab("Credits")
- local Section = Tab:NewSection("THX to use my script")
- Section:NewButton("Check my Pastebin for more scripts")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement