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("Speed", "DarkTheme")
- local speed = Window:NewTab("Speed")
- local rs = speed:NewSection("CFrame Speed")
- rs:NewButton("CFrame Guns FIX", "ButtonInfo", function()
- for _, v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
- if v:IsA("Script") and v.Name ~= "Health" and v.Name ~= "Sound" and v:FindFirstChild("LocalScript") then
- v:Destroy()
- end
- end
- game.Players.LocalPlayer.CharacterAdded:Connect(function(char)
- repeat
- wait()
- until game.Players.LocalPlayer.Character
- char.ChildAdded:Connect(function(child)
- if child:IsA("Script") then
- wait(0.1)
- if child:FindFirstChild("LocalScript") then
- child.LocalScript:FireServer()
- end
- end
- end)
- end)
- end)
- rs:NewButton("CFrame Speed (C)", "ButtonInfo", function()
- repeat
- wait()
- until game:IsLoaded()
- local L_134_ = game:service('Players')
- local L_135_ = L_134_.LocalPlayer
- repeat
- wait()
- until L_135_.Character
- local L_136_ = game:service('UserInputService')
- local L_137_ = game:service('RunService')
- getgenv().Multiplier = 0.5
- local L_138_ = true
- local L_139_
- L_136_.InputBegan:connect(function(L_140_arg0)
- if L_140_arg0.KeyCode == Enum.KeyCode.LeftBracket then
- Multiplier = Multiplier + 0.01
- print(Multiplier)
- wait(0.2)
- while L_136_:IsKeyDown(Enum.KeyCode.LeftBracket) do
- wait()
- Multiplier = Multiplier + 0.01
- print(Multiplier)
- end
- end
- if L_140_arg0.KeyCode == Enum.KeyCode.RightBracket then
- Multiplier = Multiplier - 0.01
- print(Multiplier)
- wait(0.2)
- while L_136_:IsKeyDown(Enum.KeyCode.RightBracket) do
- wait()
- Multiplier = Multiplier - 0.01
- print(Multiplier)
- end
- end
- if L_140_arg0.KeyCode == Enum.KeyCode.C then
- L_138_ = not L_138_
- if L_138_ == true then
- repeat
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + game.Players.LocalPlayer.Character.Humanoid.MoveDirection * Multiplier
- game:GetService("RunService").Stepped:wait()
- until L_138_ == false
- end
- end
- end)
- end)
- rs:NewSlider("CFrame Speed ", "SliderInfo", 5, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
- getgenv().Multiplier = s
- end)
- rs:NewKeybind("Toggle UI", "KeybindInfo", Enum.KeyCode.V, function()
- Library.ToggleUI()
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement