【Unity】自分自身を削除する

this だけでは、削除できないので、
this.gameObject と書く必要があります。
[c]
Destroy( this.gameObject );
[/c]