#How do I make a script that when I press and hold space bar it fly's me up like im using a jetpack

7 messages · Page 1 of 1 (latest)

tidal wigeon
#
local infJump
local infJumpDebounce = false
UserInputService.JumpRequest:Connect(function()
        if not infJumpDebounce then
            infJumpDebounce = true
            Player.Character:FindFirstChildOfClass("Humanoid"):ChangeState(Enum.HumanoidStateType.Jumping)
            task.wait()
            infJumpDebounce = false
        end
    end)

Taken from here https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source trol

#

Lol

#

Nvm

clear echo
#

Does that work?

strange fableBOT
#

studio** You are now Level 2! **studio

clear echo
#

@tidal wigeon

#

nvm i got one that works