I'm trying to move players to a brick on my map. I don't really know how to use that. Help?
You have to use this
game.Workspace.Player.Torso.CFrame = CFrame.new(Vector3.new(0, 50, 0))
Please look on the wiki before immediately coming here. You could have had your answer there.
MoveTo() takes a vector three value. So,
MoveTo(Vector3.new(#,#,#))
Or,
MoveTo(workspace.Part.Position)