Child Transform

How can I get the transform of a child that is holding a certain script?

If you are using C#, you do it like this-

GetComponentInChildren<CertainScript>().transform

If you are using JS, it’s like this-

GetComponentInChildren(CertainScript).transform

Look it up.