Advertisement
Yfytydutyrd

Ggrgr

Dec 25th, 2022
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2.  
  3.  
  4.  
  5. function Script()
  6. local Window = Library.CreateLib("test script", "Ocean")
  7.  
  8.  
  9.  
  10. local Main = Window:NewTab("Main")
  11. local MainSection = Main:NewSection("Main")
  12.  
  13.  
  14. -- Script
  15.  
  16. MainSection:NewSlider("Walkspeed", "Changes how fast you walk.", 250, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
  17. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  18. end)
  19.  
  20. MainSection:NewSlider("JumpPower", "Changes how fast you jump.", 250, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
  21. game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  22. end)
  23.  
  24. MainSection:NewButton("Infinite Yield", "Give you infinite yield script.", function()
  25. loadstring(game:HttpGet(('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'),true))()
  26. end)
  27.  
  28. MainSection:NewToggle("Infinite Jump", "Lets you infinitely jump", function()
  29. local InfiniteJumpEnabled = true
  30. game:GetService("UserInputService").JumpRequest:connect(function()
  31. if InfiniteJumpEnabled then
  32. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  33. end
  34. end)
  35. end)
  36.  
  37.  
  38. -- Credits
  39.  
  40.  
  41. local Credits = Window:NewTab("Credits")
  42. local CreditsSection = Credits:NewSection("Credits")
  43.  
  44.  
  45. CreditsSection:NewLabel("Created by Mobile hacks123")
  46.  
  47.  
  48.  
  49. end
  50.  
  51.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement