of     1   

itsjustatlas
#228135240Monday, November 27, 2017 4:39 AM GMT

function onTouch(part) game.Players.LocalPlayer.Humanoid.Jump = true wait(0.53) game.Players.LocalPlayer.Humanoid.Jump = false end script.Parent.Touched:connect(onTouch) humanoid is not valid member of player, line 2. rip That's your opinion, i'm unsubscribing
200Ethan
#228135259Monday, November 27, 2017 4:40 AM GMT

function onTouch(part) game.Players.LocalPlayer.Character.Humanoid.Jump = true wait(0.53) game.Players.LocalPlayer.Character.Humanoid.Jump = false end ###################################### ### changing it back to false won't do anything; Roblox does that automatically.
200Ethan
#228135292Monday, November 27, 2017 4:41 AM GMT

function onTouch(part) game.Players.LocalPlayer.Character.Humanoid.Jump = true wait(0.53) game.Players.LocalPlayer.Character.Humanoid.Jump = false end script.Parent.Touched:connect(onTouch) It's no use changing the Jump property back to false, Roblox does that automatically. > print("My siggy: '", siggy, "' is the best." ) My siggy: ' nil ' is the best.
Odawg566
#228135308Monday, November 27, 2017 4:42 AM GMT

script.Parent.Touched:connect(function(p) p.Parent.Humanoid.Jump = true wait(0.53) p.Parent.Humanoid.Jump = false end) henlo my guy

    of     1