I’m trying to send a pop up notification "You Killed " + Character Name that triggers from the death of the character blueprint. When the Character’s HP <= 0 the flag is set to dead which then triggers a custom event in the game mode blueprint that casts to the instigating character (the player that killed the current character). The Game mode BP then sets the killnotice flag on the instigating character, which will then trigger the HUD BP to pop up the "You Killed " Notice.
The curious thing is that it only works once on the client side, server side is fine.
After it works once on the Client, I noticed the KillNotice flag gets set sucessfully by the game mode blueprint, but for some reason it’s not triggering the Branch Node in the HUD BP. I’m not sure why it just stops after one time.
Things to note, the incoming nodes for Character BP is EventTick (so every tick it’s checking for death)
incoming node for HUDBP is EventDrawHUD (should be checking the flag each draw update)
Thanks for any insight to this!!