What's new
Heapleak - Scripthub

Get the most out of HeapLeak by creating a free account! Once signed in, you’ll gain full access to restricted content, be able to share your own scripts, and participate in our member-only discussions.

Infinite Jump Free No Key

Version / Update: v1.0.0
Download / Script Link
-- ⚡ Infinite Jump Script
-- Author: Lennioda
-- Description: Lets you jump infinitely by pressing the jump key repeatedly.
-- Works with both R6 and R15 avatars.

local UserInputService = game:GetService("UserInputService")
local Players = game:GetService("Players")
local player = Players.LocalPlayer
local humanoid

-- Function to get the current humanoid
local function getHumanoid()
local character = player.Character or player.CharacterAdded:Wait()
local hum = character:FindFirstChildOfClass("Humanoid")
return hum
end

-- Connect jump input
UserInputService.JumpRequest:Connect(function()
humanoid = humanoid or getHumanoid()
if humanoid then
humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
end
end)

-- Reset when respawning
player.CharacterAdded:Connect(function(character)
humanoid = character:WaitForChild("Humanoid")
end)

print("✅ Infinite Jump Script Loaded!")
[ View More ]
2291224f-7b3f-4b37-a9a2-e9a411930be7.webp


Infinite Jump thats it. You can just hold jump.
 
Back
Top