Skip to main content
1 of 4
Hackworth
  • 2.9k
  • 1
  • 24
  • 27

this.positionVector = this.playerSpawn.positionVector;

That seems to be your problem. This is indeed a reference; try calling

this.positionVector = this.playerSpawn.positionVector.Clone();

Hackworth
  • 2.9k
  • 1
  • 24
  • 27