shooting an enemy with particles

can someone please give me a script where you can shoot gameobjects down with a particle effect ??

thank you

Shoot

  • Input.GetMouseButtonUp(0)
  • Instantiate
  • rigidbody.AddForce

OR Raycast

Impact

  • OnCollisionEnter
  • Instantiate
  • Destroy

Good luck.