How to access destroy objects in unity?

I want to access game objects what destroyed.
I used SetActive method but method didn’t be useful.
I am waiting your advices.

Afaik, once you destroy a game object, it’s gone forever.

If you are using the SetActive method, then just store a reference to the game object somewhere so you will always have access to it.

Thanks mate.