-- ⚡ 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!")