How DO you make a person teleport from one place to another?
game:GetService('TeleportService'):Teleport(PlaceId, game.Players.PlayerName)
http://wiki.roblox.com/index.php?title=Teleport_(Method)
wait(15) target = CFrame.new(0, 50, 0) --could be near a brick or in a new area for i, player in ipairs(game.Players:GetChildren()) do player.Character.Torso.CFrame = target + Vector3.new(0, i * 5, 0) --add an offset of 5 for each character end
--I think this might answer your question