I have a part with a ClickDetector, and I want it to make the player to jump 6 seconds after they click it, how do I do this? I tried many times with different scripts but none of them seem to work.
script.Parent.ClickDetector.MouseClick:connect(function(Player) local Humanoid = Player.Character:FindFirstChild("Humanoid") wait(6) Humanoid.Jump = true end)