#how do you teleport a player to their current position?
1 messages · Page 1 of 1 (latest)
i tried this but it teleports you to 0,0,0 with no error
ive also tried teleporting the model thats replacing the player to the player aswell as saving a last known position with a block and neither have done anything different
You're setting the Vector3 to the value objects, not the values themselves. charPos = Vector3.new(charPos_X.Value, charPos_Y.Value, charPos_Z.Value), but if you're teleporting here why save the values like that if you're going to immediately use them?
because otherwise it teleports the player between their current position and the position of the model their having cloned into them