Hello! My 3rd line in this script gives me the output “Script timeout: exhausted allowed execution time”
This is the script:
local TeleportService = game:GetService("TeleportService")
while true do -- this is the line that gives rthe error
for i = 1,15,-1 do
script.Parent.Parent.Lane1Count.BillboardGui.Count.Text = "Leaving in "..i.." seconds!"
wait(1)
end
end