simple explosion animation

Hello!

I need to do a simple explosion animation when i touch a cube, how can i do?
I have this function to destroy the cube.

if (Input.GetMouseButtonDown(0))
{
Ray ray = GetComponent().ScreenPointToRay(Input.mousePosition);
RaycastHit hit;
if (Physics.Raycast(ray, out hit))
{
Destroy(hit.collider.gameObject);
}
}

Thanks97510-2017-07-10-17h57-19.png

Get an explosion from the asset store. plenty of free ones. Get one that comes as a prefab and then instantiate it in the same place you destroy the cube.