GameObject Child;
Child = transform.GetChild(0).gameObject;
transform.GetChild(int index);
GameObject originalGameObject = GameObject.Find("MainObj");
GameObject child = originalGameObject.transform.GetChild(0).gameObject;
Transform parent;
int index = transform.GetSiblingIndex(); // get the index of the child
GameObject Child = parent.GetChild(index); // get the child with its index