Deleted (528292)

Deleted

You can only increase transform.position by another Vector3. Vector3 doesn’t have an increment operator that accepts float as parameter. What you can do is something like this

transform.position += new Vector3(5,0,0) * time.deltaTime;

This will move your object in time on the x axis.