unity active code example
Example 1: setactive unity
gameObject.SetActive(true);
gameObject.SetActive(false);
Example 2: unity enable gameobject
GameObject.Find("PlayMenu 3").SetActive(false);
// you could also store a GameObject as variable
gameObject.SetActive(true);
gameObject.SetActive(false);
GameObject.Find("PlayMenu 3").SetActive(false);
// you could also store a GameObject as variable