Unity destroy an objects parent code example
Example 1: unity remove parent
transform.parent = null;
Example 2: destroy all objects under parent unity c#
foreach (Transform child in TextHolder.transform) { GameObject.Destroy(child.gameObject); }