Try this: ( adapted from your comments )
var hero;
void Start(){
hero = GameObject.FindWithTag("Player"); //be sure to set the tag on the correct object
}
void Update(){
hero.transform.position.x =hero.transform.position.x;
hero.transform.position.y = hero.transform.position.y + 10;
}
↧