Is there a script which can automatically teleport players from the lobby to a map and from the map back to the lobby but like, every 5 minutes or so.
Yes. Here is a quick one.
01 | time = 60 * 5 -- 5 Mins |
02 | players = game.Players:GetChildren() |
03 | while true do |
04 | for i = 1 , #players do |
05 | wait(time) |
06 | players [ i ] .Character:MoveTo(Vector 3. new(pos 1 ,pos 2 ,pos 3 )) |
07 | wait(time) |
08 | players [ i ] .Character:MoveTo(Vector 3. new(pos 1 ,pos 2 ,pos 3 )) |
09 |
10 | end |
11 | end |
01 | local Time = 60 * 5 -- 5 Minutes |
02 | local LobbyCFrame = CFrame.new( 0 , 0 , 0 ) |
03 | local MapCFrame = CFrame.new( 0 , 0 , 0 ) |
04 | local InLobby = true |
05 |
06 | while wait() do |
07 | wait(Time) |
08 | if InLobby = = true then |
09 | for i,v in pairs (game.Players:GetPlayers()) do |
10 | if v.Character:FindFirstChild( "Torso" ) then |
11 | v.Character.Torso.CFrame = MapCFrame |
12 | end |
13 | end |
14 | wait(Time) |
15 | InLobby = false |