ADVERTISEMENTREMOVE ADS

Infinite Jump Free No Key

Universal script
1 month ago
Script preview thumbnail
Script Preview

Description

Infinite Jump thats it. You can just hold jump.

Features:

  • Infinite Jump
ADVERTISEMENTREMOVE ADS
32 Lines • 921 Bytes
Raw
-- ⚡ 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!")
ADVERTISEMENTREMOVE ADS

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS