How do I get a debug message to show on only one screen in a multiplayer game?

#IsLocallyControlled()

If you do this in your character class:

if(IsLocallyControlled())
{
   //print your debug message
}

It will only show on the local owning player of the character in which you call this function

:slight_smile:

Rama

1 Like