local boostpower = 100 -- change this to jump higher or lower local opower = 50 -- this is original jump power yes yes -- very pro -- made by proohio -- https://proohio.click/ local plrs = game:GetService("Players") local plr = plrs.LocalPlayer local char = plr.Character or plr.CharacterAdded:Wait() local hum = char:WaitForChild("Humanoid") local bool = Instance.new("BoolValue") bool.Value = false local tool = Instance.new("Tool") tool.Name = "jumpBoost" tool.RequiresHandle = false tool.Parent = plr.Backpack tool.Equipped:Connect(function() bool.Value = true end) tool.Unequipped:Connect(function() bool.Value = false end) bool:GetPropertyChangedSignal("Value"):Connect(function() if bool.Value then hum.JumpPower = boostpower elseif not bool.Value then hum.JumpPower = opower end end)