So far, I have this:
1 | game.Workspace.PLAYER 1 NAMEHERE.Torso.Position = game.Workspace.PLAYER 2 NAMEHERE.Torso.Position |
But when I tested it, Player 1 died, but his torso successfully teleported to Player 2. I thought that the Torso would come with the body, but obviously that failed.
Any ideas?
Use :MoveTo()
1 | game.Workspace.PLAYER 1 NAMEHERE:MoveTo(game.Workspace.PLAYER 2 NAMEHERE.Torso.Position) |
Instead of using position, try using CFrame
1 | game.Players.Player 1. Character.Torso.CFrame = CFrame.new( 1 , 1 , 1 ) |
1 | game.Workspace.PLAYER 1 NAMEHERE.Torso.CFrame = game.Workspace.PLAYER 2 NAMEHERE.Torso.CFrame |
Just a simple edit, CFrame works, position doesn't.