Cómo hacer referencia a la función en la unidad

public GameObject myObject; //make ref. in inspector window

myObject.GetComponent<MyScript>().MyFunction();
Comfortable Caterpillar