I am using transfrom.find to find inactive gameobjects attached to my char bones.
It doest seem to find any.
How do i find this inactive gameobject
You can recursively iterate over the object hierarchy using transform.childCount and transform.GetChild until you find the gameObject.name you’re interested in.
Please be aware that accessing the name property of any Unity object allocates memory, see here.