I have tried
game.Players.Examplenoob.Character:MoveT... workspace.Base)
1 | game.Players.PLAYEREXAMPLE.Character:MoveTo(game.Workspace.Base.Position) |
Well first of all, you want to get ALL of the players, by that you would do :GetAllChildren()
1 | local teleport = game.Workspace:FindFirstChild( "Base" ) |
2 | game.Players:GetAllChildren().Character:MoveTo(teleport.Position,teleport) |
3 |
4 | --Please note that this is from zack785's answer, I have just added the :GetAllChildren() |
1 | local teleport = game.Workspace:FindFirstChild( "Base" ) |
2 | game.Players.Examplenoob.Character:MoveTo(teleport.Position,teleport) |
3 |
4 | --When teleporting to parts you need to do (part.Position,part), I don't really know the use since it's already a position but that's how it works. |