Wie man unter uns in Einheit klon macht
to make clone of any gameObject you can write this code:-
public GameObject myObject; //this is GameObjectThatYouWantToClone
GameObject Clone = Instantiate(myObject); // now your clone of that gameobject is stored in "Clone" gameObject
Thankful Tarsier