RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"add super jump"
-- local script local player = game:GetService("Players").LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoid = character:WaitForChild("Humanoid") local superJumpEnabled = false local function enableSuperJump() if not superJumpEnabled then superJumpEnabled = true humanoid.JumpPower = 100 else superJumpEnabled = false humanoid.JumpPower = 50 end end local function onKeyPress(actionName, userInputState, inputObject) if userInputState == Enum.UserInputState.Begin then enableSuperJump() end end game:GetService("ContextActionService"):BindAction("SuperJump", onKeyPress, false, Enum.KeyCode.Space)