1 2 3 4 5 6 7 8 9 10 11 12 13 14 public class MyExam : MonoBehaviour { // Start is called before the first frame update void Start() { // GameObject ob = new GameObject("TestAddCom"); GameObject ob = GameObject.Find( "TestAddCom" ); TestAddCom addCom = ob.AddComponent < TestAddCom > (); } } Colored by Color Scripter cs TestAddCom 오브젝트를 찾은 후 AddComponent를 사용하여 스크립트를 붙여준다.