I've tried to move the player, It's been successful but keeps killing the players, Why?
game.Workspace.Player.Torso.Position = Vector3.new(0, 50, 0)
The Proper way to do this is to use the :MoveTo()
Function.
Example
Player:MoveTo(Vector3.new(0,0,0))