Should I use Destroy() or SetActive(false)?

Destroy() will be destroy the object from the scene (hierarchy) . So u cant reuse that object.

and if u want to use that object later on than u can use setActive(false).

For more info : Destroy and SetActive

Thanks.