Spawn blood particle system prefab where sword hits enemy

How would I do this where my swords hits the player? Like when the player slashes the enemy left, the blood particle system is instantiated and is going in the direction that the sword made contact?

The simplest way is to attach a blood particle sys on the blade, set it in world simulation space, add some gravity, use emission “rate over distance” instead “rate over time”, add “inherit velocity” (particles flies in the same direction as the game object) and “Limit Velocity Over Lifetime” (for braking particle velocity) Modules.

There are other more performant but restrictive ways (local space, emission over time/burst, no inherit/limit velocity modules) to achieve the same particle motion, but modern mobile devices shouldn’t have too much trouble to handle the aforementioned setup.