How would I go about creating a banner for each joined player?

Hey man I’m not the most knowledge with this but have ran into the same issue before. So PlayerState is always going to be replicated, if you just get a reference to it, it will likely return null bcs BP wouldn’t know which one you’re specifically referring to. Try to get the PlayerController and then get the PlayerState from it, or you can get the GameState and then get the PlayerArray which is an array of all PlayerStates currently in the game. Hope this is helpful!