public List<GameObject> childrens = new List<GameObject>(); void Update() { if(/* Something */) { foreach (var obj in childrens) obj.SetActive(false); } }