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("Vener")
- local Tab = Window:NewTab("Speed")
- local Section = Tab:NewSection("Speed")
- Section:NewButton("Speed 100", " ", function()
- while wait() do
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
- end
- end)
- Section:NewButton("Speed 200", " ", function()
- while wait() do
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 200
- end
- end)
- Section:NewButton("Speed 300", " ", function()
- while wait() do
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 300
- end
- end)
- Section:NewButton("Speed 400", " ", function()
- while wait() do
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 400
- end
- end)
- local Section = Tab:NewSection("SpeedSlider")
- Section:NewSlider("Speed", " ", 500, 0, function (s)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
- end)
- local Tab = Window:NewTab("Jump")
- local Section = Tab:NewSection("Jump")
- Section:NewButton("Jump 100", " ", function()
- while wait() do
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = 100
- end
- end)
- Section:NewButton("Jump 200", " ", function()
- while wait() do
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = 200
- end
- end)
- Section:NewButton("Jump 300", " ", function()
- while wait() do
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = 300
- end
- end)
- local Section = Tab:NewSection("JumpSlider")
- 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 VenerDex", " ")
- local Tab = Window:NewTab("Teleports")
- local Section = Tab:NewSection("Teleports")
- Section:NewButton("1 stage", " ", function()
- 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)
- end)
- Section:NewButton("Final", " ", function()
- 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)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement