local player = game.Players.LocalPlayer local uis = game:GetService("UserInputService") uis.JumpRequest:Connect(function() local char = player.Character if char and char:FindFirstChild("Humanoid") then char.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping) end end)