Niagara Ball effect movement (not working)

You need to tell Niagara which way to go in world space.

  1. Set up a vector parameter in your Niagara system called something like user.velocity
  2. use it to drive the velocity of your particle (with an addvelocity module)
  3. Using blueprints get the forward vector of your character and multiply it by the speed you want
  4. Use the result in your user.velocity parameter
  5. Activate your Niagara system and it should move forward from your character.

Good luck!