local WayPoint
local used = false
script.Parent.Touched:Connect(function(hit)
local humanoid = hit.Parent:FindFirstChild("Humanoid")
if humanoid ~= nil then
if used == false then
used = true
humanoid.Jump = true
wait(1)
humanoid.Jump = false
used = false
end
end
end)
Есть вот такой скрипт, но он не работает: