Advertisement
LemonJuicer

OP Horse Race Script - Infinite Wins

Nov 20th, 2024
6,794
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("Henkie Frenkie HUB", "DarkTheme")
  3.  
  4. local Main = Window:NewTab("Main")
  5. local SpeedSection = Main:NewSection("Speed")
  6.  
  7. -- Voeg een variabele toe om de loop te beheren
  8. local speedActive = false
  9.  
  10. SpeedSection:NewToggle("Super Fast", "Gain super speed", function(state)
  11. speedActive = state -- Stel de variabele in op de toggle-staat
  12.  
  13. if state then
  14. -- Start een nieuwe loop voor snelheid
  15. spawn(function() -- Gebruik 'spawn' om een aparte thread te starten
  16. while speedActive do
  17. wait()
  18. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  19. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0, 0, -100000)
  20. end
  21. end)
  22. end
  23. end)
  24.  
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement