HEEEELP:( Recording coordinates for the position of the first controller

Do anyone know any script for how to do if you want to get the coordinates for the movement of the first person controller in X, Y and Z…Neeed some help and if it is possible to get an file that I can plot in EXCEL…be my hero…:-|:-|:-|:-|:-|:-|

First of all, try to explain what you want more accurate. And you should discover some things for yourself.
But I’ll get your started. From what I understand is that you want to get the coordinates from the First person Controller and put them in an excel document.

Why do you want to store in in an excel document, why not use a MySQL database?

I’ll help you with the script to get the coordinates from the FPC, here it comes

//Create the variable
private GameObject person;

void Start() {
     //Assign the FPC to the variable
     person = GameObject.Find("First Person Controller");
} 

void Update() {
     //Show the position of the FPC in vector3 format
    Debug.Log(person.gameObject.transform.position);
    //If you want the x y z apart from eachother you can do this
   Debug.Log(person.gameObject.transform.position.x);
   Debug.Log(person.gameObject.transform.position.y);
   Debug.Log(person.gameObject.transform.position.z);
}

Note: to get a value into a database you ofcourse need to store the positions in variables.
Note: This is C# code, not javascript.