|
game.Workspace.Player.Torso.CFrame = CFrame.new(Vector3.new(0, 50, 0))
or
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
or
Workspace.Player:MoveTo(Vector3.new(0, 100, 0))
or
Workspace.Player.Humanoid:MoveTo(Workspace.Part.Position, Workspace.Part)
or
game:GetService('TeleportService'):Teleport(1818) --change 1818 to the games id like the id that goes on the end of the url
and you have to put the one rate above this that teleports you to different game,you have to put that in a local script
and by the way you can find this all on the roblox wiki
moveto function: http://wiki.roblox.com/index.php/MoveTo
teleport in map: http://wiki.roblox.com/index.php/Teleportation
teleport to different map: http://wiki.roblox.com/index.php/Teleport_(Method)
i hope i helped you |