how can i instantiate a object without a component?

Hi,
i have a problem. My object is instantiated, after the clone is destroyed but it shows the error: MissingReferenceException.
I would instantiate the clone without a component in question.
Greetings

Well there’s no overloaded method of Instantiate to instantiate without a certain component but you can always do remove the component with Destroy(go.GetComponent()) or simply set it inactive: go.GetComponent().Enabled = false;