Как получить ребенка от GameObject
// By Name
GameObject Child = GameObjectsTransform.Find("NameOfChild").gameObject
// By index
GameObject Child = GameObjectsTransform.GetChild(The child index).gameObject
Obnoxious Oystercatcher