GUI problem

How can i destroy GUI.Label?:slight_smile:

Do you mean conditionally draw/not draw a label? If so - you’ll have to hold state either in a bool or an enum and evaluate it in OnGUI() to determine what controls to draw.

public bool doLabel;

void OnGUI()
{
     if (doLabel)
          GUI.Label(...);
}