Is this a bug or am I simply scripting it wrong?
When I try to move a player using MoveTo() It doesn't do anything
game.Players.Player1.Character:MoveTo(game.Players.Player2.Character.Torso.Position, game.Players.Player2.Character.Torso) -- I also tryed CFraming it game.Players.Player.Character.Torso.CFrame = CFrame.new(game.Players.Player2.Character.Torso.Position) -- Both do not working, Assuming I'm using them correctly
for _, Plr in pairs(game.Players:GetPlayers()) do --Get Players Plr:MoveTo(Vector3.new(0,0,0)) end
I havent used MoveTo in a LONG time so it might be
Plr.Character.Torso:MoveTo(Vector3.new(0,0,0))