HuntPlayzwithscripts

ONLY FOR CAMERAMAN

Jun 27th, 2022
459
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. ---Script By HuntPlayzGames
  2. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  3. local Window = Library.CreateLib("Sea Cleaning Simulator By DarkSoul", "Synapse")
  4.  
  5. --Tabs--
  6. local Tab1 = Window:NewTab("Main")
  7. local SectionTab1 = Tab:NewSection("Subscribe To HuntPlayzGames")
  8.  
  9. --Buttons--
  10. Tab1Section:NewButton("Sea Cleaning Simulator", "Subscribe To HuntPlayzGames", function()
  11. print("Clicked")
  12. loadstring(game:HttpGet("https://raw.githubusercontent.com/dooory/OC/main/Working/sea_cleaning_sim.lua"))()
  13. end)
  14.  
  15. Tab1Section:NewToggle("Speed on/off", "ToggleInfo", function(state)
  16. if state then
  17. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 99
  18. else
  19. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 20
  20. end
  21. end)
  22.  
  23. Tab1Section:NewSlider("Speed", "SliderInfo", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
  24. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  25. end)
  26.  
  27.  
  28.  
  29.  
  30.  
Advertisement
Add Comment
Please, Sign In to add comment