Advertisement
Venerdex

GUI script for Tower of hell

Jan 8th, 2023 (edited)
871
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.75 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("Tower of hell BY VENERDEX")
  4.  
  5. local Tab = Window:NewTab("Speed")
  6.  
  7. local Section = Tab:NewSection("WalkSpeed")
  8.  
  9. Section:NewSlider("WalkSpeed", " ", 200, 0, function(s)
  10. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  11. end)
  12.  
  13. local Tab = Window:NewTab("Jump")
  14.  
  15. local Section = Tab:NewSection("JumpPower")
  16.  
  17. Section:NewSlider("JumpPower", " ", 500, 0, function(j)
  18. game.Players.LocalPlayer.Character.Humanoid.JumpPower = j
  19. end)
  20.  
  21. local Tab = Window:NewTab("Credits")
  22.  
  23. local Section = Tab:NewSection("THX to use my script")
  24.  
  25. Section:NewButton("Check my Pastebin for more scripts")
  26.  
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement