/// <summary>
 /// Inits the interactivity and sets color.
 /// </summary>
 public override void OnStartAuthority()
 {
     playerRow.SetInteractivity();
     if (isHuman)
     {
         menuManager.player = this;
     }
     if (isServer)
     {
         menuManager.SetServerInteractivity();
     }
     CmdSetColor();
 }