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("Counter Blox Ultra", "BloodTheme")
- --Main
- local Tab = Window:NewTab("Main")
- local MainSection = Tab:NewSection("Main Cheats")
- MainSection:NewButton("ESP&Aimbot", "Target Enemies/Wallhack", function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/Blissful4992/Miscellaneous/main/UNIVERSAL.lua"))() print("Clicked")
- end)
- MainSection:NewButton("FOV Changer", "Changes your FOV", function()
- loadstring(game:HttpGet("https://pastebin.com/raw/VBn4XRju"))() print("Clicked")
- end)
- --Local Player
- local Player = Window:NewTab("Local Player")
- local PlayerSection = Player:NewSection("Player")
- PlayerSection:NewSlider("Walkspeed", "Increase your walkspeed", 500, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
- end)
- PlayerSection:NewSlider("Jumppower", "Increase your jumppower", 350, 50, function(s) -- 500 (MaxValue) | 0 (MinValue)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
- end)
- PlayerSection:NewButton("Fly", "A simple fly command, press 'E' to toggle.", function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/TR011F4C3/PANDA/main/scripts/fly.lua", true))()
- end)
- PlayerSection:NewToggle("Infinite Jump", "You can jump infinite", function(state)
- if state then
- _G.infinjump = true
- local Player = game:GetService("Players").LocalPlayer
- local Mouse = Player:GetMouse()
- Mouse.KeyDown:connect(function(k)
- if _G.infinjump then
- if k:byte() == 32 then
- Humanoid = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
- Humanoid:ChangeState("Jumping")
- wait(0.1)
- Humanoid:ChangeState("Seated")
- end
- end
- end)
- local Player = game:GetService("Players").LocalPlayer
- local Mouse = Player:GetMouse()
- else
- if _G.infinjump == true then
- _G.infinjump = false
- else
- _G.infinjump = true
- end
- end
- end)
- --Credit
- local Tab = Window:NewTab("Credits")
- local Section = Tab:NewSection("Created by D3M0N_HUN")
- local Section = Tab:NewSection("Script Vault")
Advertisement
Add Comment
Please, Sign In to add comment