Talk:Teleportation
From Legacy Roblox Wiki
Jump to navigationJump to search
The following scripts
game.Workspace.Player.Torso.CFrame = CFrame.new(Vector3.new(0, 0, 0))
works... but you end up in the floor. You might want to change the y coordinates, as the tutorial suggests.
game.Workspace.Player.Torso.CFrame = CFrame.new(Vector3.new(math.random(-200, 200), 30, math.random(-200, 200)))
torso = game.Workspace.Player.Torso torso.CFrame = torso.CFrame + Vector3.new(0,50,0)
p = game.Players:GetChildren() for i = 1, #p do p[i].Character.Torso.CFrame = CFrame.new(Vector3.new(20, 20, 20)) wait(1) end
(this one I only tested on one char).
work. MINDRAKER 06:23, 24 August 2008 (CDT)
HOW
Where do I enter the script?
Try the command line (View / Toolbars / Command) in Roblox Studio. MINDRAKER 15:08, 1 September 2008 (CDT)