RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"add super jump"
-- local script for adding a super jump ability to a player local player = game.Players.LocalPlayer local humanoid = player.Character:WaitForChild("Humanoid") local superJumpEnabled = true local superJumpPower = 100 local function onJumpRequest() if superJumpEnabled then humanoid.JumpPower = superJumpPower wait(0.5) humanoid.JumpPower = 50 end end humanoid.Jumping:Connect(onJumpRequest)