any objects to control themselves and go to the left !! ??

any objects to control themselves and go to the left !! ??

Hi,
I think you need to give a bit more information as to what you want.

you can get the position of an object with the following:
transform.position;

You can store this information with:
Vector3 position = transform.position;

i believe you can modify a transform to go “left” with:
transform.position += Vector3.left * Time.deltaTime;

for example I put in an empty scene the first person standard units, and it goes and turns to the left