Particle multiplayer only visible for creater

hello!
I’m making a small 2 player co op game.
In my project, when the character presses space bar, a particle emitter will spawn.
But right now only the character who created this particle can see it, how can i make it visible for the other character aswell?
(there’s probably an easy solution but i can’t find it :slight_smile: )
thanks!

Did you spawn it on the server or locally? (Most likely the latter)

i think locally, if its not showing up on the other client :s…
how do i spawn it on the server?
i tried switch has authority but it didn’t help

Well, switch has authority is when you want something to happen ONLY if it is the correct person, such as calculating health… For your situation, you should make a custom event (right click-> type ‘add custom event’) and then in the ‘details’ panel for the event, play around with the replication options. Now change your input so that when the space bar is pressed, it executes the custom event, and the event should spawn the emitter.