Advertisement
Venerdex

GUi script for cart ride around nothing

Jan 8th, 2023 (edited)
8,101
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.43 KB | None | 1 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("Vener")
  4.  
  5. local Tab = Window:NewTab("Speed")
  6.  
  7. local Section = Tab:NewSection("Speed")
  8.  
  9. Section:NewButton("Speed 100", " ", function()
  10. while wait() do
  11. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
  12. end
  13. end)
  14.  
  15. Section:NewButton("Speed 200", " ", function()
  16. while wait() do
  17. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 200
  18. end
  19. end)
  20.  
  21. Section:NewButton("Speed 300", " ", function()
  22. while wait() do
  23. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 300
  24. end
  25. end)
  26.  
  27. Section:NewButton("Speed 400", " ", function()
  28. while wait() do
  29. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 400
  30. end
  31. end)
  32.  
  33. local Section = Tab:NewSection("SpeedSlider")
  34. Section:NewSlider("Speed", " ", 500, 0, function (s)
  35. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s  
  36. end)
  37.  
  38.  
  39. local Tab = Window:NewTab("Jump")
  40.  
  41. local Section = Tab:NewSection("Jump")
  42.  
  43. Section:NewButton("Jump 100", " ", function()
  44. while wait() do
  45. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 100
  46. end
  47. end)
  48.  
  49. Section:NewButton("Jump 200", " ", function()
  50. while wait() do
  51. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 200
  52. end
  53. end)
  54.  
  55. Section:NewButton("Jump 300", " ", function()
  56. while wait() do
  57. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 300
  58. end
  59. end)
  60.  
  61. local Section = Tab:NewSection("JumpSlider")
  62. Section:NewSlider("JumpPower", " ", 500, 0, function(j)
  63. game.Players.LocalPlayer.Character.Humanoid.JumpPower = j
  64. end)
  65.  
  66. local Tab = Window:NewTab("Credits")
  67.  
  68. local Section = Tab:NewSection("THX to use my script")
  69.  
  70. Section:NewButton("check my Pastebin for more scripts VenerDex", " ")
  71.  
  72. local Tab = Window:NewTab("Teleports")
  73.  
  74. local Section = Tab:NewSection("Teleports")
  75.  
  76. Section:NewButton("1 stage", " ", function()
  77. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-416.825531, 162.999954, 171.251144, 0.999608696, -2.82340484e-09, 0.0279732496, 4.17179713e-09, 1, -4.81445674e-08, -0.0279732496, 4.82424269e-08, 0.999608696)
  78. end)
  79.  
  80. Section:NewButton("Final", " ", function()
  81. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-421.445892, -44.2000198, -296.022675, 0.999937236, 2.52149079e-09, 0.0112030106, -2.47375476e-09, 1, -4.2748578e-09, -0.0112030106, 4.24687618e-09, 0.999937236)
  82. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement