How to work with overlapping events in a server?

Does anyone know how to call an overlapping event in a server to the player that overlapped rather than on the client? Sorry I’m a newbie and first time working with servers.
I know you create a custom event that runs on the server, so I have a event begin overlap that calls this event then I cast to the first person character, but this only works in the client, I think I need to get the player array and reference the player through the game state but I’m not sure how to do that, if anyone could help me it would be greatly appreciated.

Got It fixed, using a multicast

can you specify how you got this working? How did you make the overlap event multicast? I only know how to change this on the details pane of custom events.

Overlap events already run both on server and clients.

Using “Get Player Character (0)” on server is wrong though, it doesn’t designate any specific character. You should use “Other Actor” pin from the events, which represents the actor who just triggerred it.