Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- local Window = Library.CreateLib("Henkie Frenkie HUB", "DarkTheme")
- local Main = Window:NewTab("Main")
- local SpeedSection = Main:NewSection("Speed")
- -- Voeg een variabele toe om de loop te beheren
- local speedActive = false
- SpeedSection:NewToggle("Super Fast", "Gain super speed", function(state)
- speedActive = state -- Stel de variabele in op de toggle-staat
- if state then
- -- Start een nieuwe loop voor snelheid
- spawn(function() -- Gebruik 'spawn' om een aparte thread te starten
- while speedActive do
- wait()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0, 0, -100000)
- end
- end)
- end
- end)
Advertisement
Advertisement