All to know is how to make a three minute countdown timer(when it ends it teleports all of the players to a certain position.
CountdownTime = 30 -- 30 seconds, you can edit this property while wait(3) do -- while wait loop for i = CountdownTime, 0, - 1 do -- for loop print("Countdown: "..i) -- output wait(1) if CountdownTime == 0 then print("Teleporting players..") -- Add teleporting code here, if you also need help with that; please let me know end end