how to destroy a gameobject code example
Example 1: destroy gameobject unity
Destroy(this.gameObject);
Example 2: how to destroy a gameobject in c#
Destroy(gameObject); // destroys the game object attached to the script
Destroy(this.gameObject);
Destroy(gameObject); // destroys the game object attached to the script