get any gameobject in unity script code example
Example 1: finding object trough scripts c#
hand = GameObject.Find("Hand");
Example 2: what does gameobject.find return
//It returns null/void
hand = GameObject.Find("Hand");
//It returns null/void