Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Library = loadstring(game:HttpGet("https://pastebin.com/raw/jNS157AK"))()
- local Players = game:GetService("Players")
- local Player = Players.LocalPlayer
- -- Variables --
- _G.ExploitCharacterSpeed = 16 -- Speed
- _G.ExploitCharacterJumpPower = 50 -- Jump Power
- _G.ExploitHitboxExpansionEnabled = false
- _G.ExploitInfiniteJumpsEnabled = false
- -- Functions --
- local function UpdateSpeed()
- while task.wait() do
- if (Player.Character ~= nil) then
- local Humanoid = Player.Character:FindFirstChildOfClass("Humanoid")
- if Humanoid then
- Humanoid.WalkSpeed = _G.ExploitCharacterSpeed
- end
- end
- end
- end
- local function UpdateJumpPower()
- while task.wait() do
- if (Player.Character ~= nil) then
- local Humanoid = Player.Character:FindFirstChildOfClass("Humanoid")
- if Humanoid then
- Humanoid.UseJumpPower = true
- Humanoid.JumpPower = _G.ExploitCharacterJumpPower
- end
- end
- end
- end
- local function HitboxExpansion()
- while task.wait() do
- if (_G.ExploitHitboxExpansionEnabled == true) then
- for _, Target in pairs(game.Players:GetPlayers()) do
- if (Target ~= Player) and (Target.Character ~= nil) and (Target.Character:FindFirstChild("HumanoidRootPart") ~= nil) then
- local HumanoidRootPart = Target.Character:FindFirstChild("HumanoidRootPart")
- HumanoidRootPart.Size = Vector3.new(15, 15, 15)
- HumanoidRootPart.CanCollide = false
- HumanoidRootPart.Transparency = 0.85
- HumanoidRootPart.Material = Enum.Material.Neon
- HumanoidRootPart.BrickColor = Target.TeamColor
- end
- end
- else
- for _, Target in pairs(game.Players:GetPlayers()) do
- if (Target ~= Player) and (Target.Character ~= nil) and (Target.Character:FindFirstChild("HumanoidRootPart") ~= nil) then
- local HumanoidRootPart = Target.Character:FindFirstChild("HumanoidRootPart")
- HumanoidRootPart.Size = Vector3.new(2, 2, 1)
- HumanoidRootPart.CanCollide = false
- HumanoidRootPart.Transparency = 1
- end
- end
- end
- end
- end
- -- Create GUI --
- local Window = Library:CreateWindow("All Games Hud", "...")
- local Main = Window:addPage("Main", 2, true, 7.5)
- Main:addLabel("Universal", "Actions that will work for MOST games")
- Main:addButton("Reset Character", function()
- Player.Character:FindFirstChildOfClass("Humanoid").Health = 0
- end)
- Main:addTextBox("Speed", "...", function(Value)
- if (tonumber(Value) ~= nil) then
- _G.ExploitCharacterSpeed = tonumber(Value)
- end
- end)
- Main:addTextBox("Jump Power", "...", function(Value)
- if (tonumber(Value) ~= nil) then
- _G.ExploitCharacterJumpPower = tonumber(Value)
- end
- end)
- Main:addToggle("Infinite Jumps", function(Toggle)
- _G.ExploitInfiniteJumpsEnabled = Toggle
- game:GetService("UserInputService").JumpRequest:Connect(function()
- if (_G.ExploitInfiniteJumpsEnabled == true) then
- Player.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Jumping")
- end
- end)
- end)
- Main:addToggle("Expand Hitbox", function(Toggle)
- _G.ExploitHitboxExpansionEnabled = Toggle
- end)
- local Credits = Window:addPage("Credits", 1, false, 7.5)
- Credits:addLabel("Credits", "Hud created by HappyH0lidays2021")
- -- Start Functions --
- task.spawn(UpdateSpeed)
- task.spawn(UpdateJumpPower)
- task.spawn(HitboxExpansion)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement