RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"but jump power increases every second"
-- local script for increasing jump power local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoid = character:WaitForChild("Humanoid") local jumpPowerIncrease = 5 local maxJumpPower = 200 game:GetService("RunService").Heartbeat:Connect(function() if humanoid.JumpPower < maxJumpPower then humanoid.JumpPower = humanoid.JumpPower + jumpPowerIncrease end end)