1. So how do I go about turning a x, y, and z into a main position. I have the following:
    Code:
                    case "create":
                        storedData.aX = player.transform.position.x;
                        storedData.aY = player.transform.position.y;
                        storedData.aZ = player.transform.position.z;
                       
                    break;
                   
                    case "go":
                       
                    break; 
    Inside the "case "go":" i need to be able to put all of that Data into one position.
     
  2. Is this being stored? You can convert each value to a float and save them, then to retrieve it add new Vector3(float.x, float.y, float,z)
     
  3. Yeah it is, and thanks :D