I'm using C# script to change the text of 9 buttons and a label by clicking one button. I can change the text of the clicked button by using this code:
public void BeenClicked()
{
this.GetComponentInChildren < Text >().Text= "Hi";
}
as long as the script is associated with the button (and not in a script holder). But I can't access the rest of the objects to change their values. Any help is highly appreciated!