Here's the script ```lua
--- Colisions
local interval = script.Parent.Parent.IntervalGUI
local btn = interval.PlayAgainBtn
if Obstacles.Touched = true then
interval.Enabled = true
wait(1)
if btn.MouseButton1Click:Connect(function) then
Player.Position = (0.085, 0, 0.417, 0)
wait(0.3)
interval.Enabled = false
end
end