finding child objects...

I am having trouble finding a child of my game object.

I have duplicates (prefabs) of the same object in the scene so using GameObject.Find(“myChild”) returns the wrong child.

Since all my prefabs have the same names, how can i access the instance children??

thanks…

Use Transform.Find() to find children of a particular game object.

–Eric