Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do you make a timed teleport?

Asked by 11 years ago

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.

0
Try not to ask questions like "is there a script that...", because the answer is almost always "yes". The trick is to try solving the problem yourself then asking for feedback. Ozzypig 185 — 11y

2 answers

Log in to vote
0
Answered by 11 years ago

Yes. Here is a quick one.

01time = 60 * 5 -- 5 Mins
02players = game.Players:GetChildren()
03while true do
04for i = 1, #players do
05    wait(time)
06    players[i].Character:MoveTo(Vector3.new(pos1,pos2,pos3))
07    wait(time)
08    players[i].Character:MoveTo(Vector3.new(pos1,pos2,pos3))
09 
10end
11end
Ad
Log in to vote
0
Answered by 11 years ago
01local Time = 60 * 5  -- 5 Minutes
02local LobbyCFrame = CFrame.new(0, 0, 0)
03local MapCFrame = CFrame.new(0, 0, 0)
04local InLobby = true
05 
06while wait() do
07wait(Time)
08if InLobby == true then
09for i,v in pairs (game.Players:GetPlayers()) do
10if v.Character:FindFirstChild("Torso") then
11v.Character.Torso.CFrame = MapCFrame
12end
13end
14wait(Time)
15InLobby = false
View all 25 lines...

Answer this question