So I am currently trying to figure out this..(I am new to scripting) I was trying to make a script that is placed in a part and when the part is touched by 1 player than it makes that player jump after maybe 3 seconds, If anyone knows how to go about it can they please send a answer and explain how it works, thank you for reading and helping me :3
Humanoids have a bool in them called Jump and it will make the player jump.
local part = script.Parent part.Touched:connect(function(hit) --When the part is touched if hit.Parent:FindFirstChild('Humanoid') then --Checks to make sure it's a whoman. wait(3) --Waits three seconds hit.Parent.Humanoid.Jump = true --Makes them jump end end)