1. Hello all!
    How do I get my UI is not shown on screen of death?
     

    Attached Files:

  2. Its not even in the way as you only see it for a few secs I would not be bothered by it
     
  3. Wulf

    Wulf Community Admin

    Set the UI Parent to Hud.
     
  4. So it's worth.
    But it does not work
     
  5. Wulf

    Wulf Community Admin

    Is this your own plugin or a modified version of InfoPanel? It looks a lot like InfoPanel.
     
  6. This my privat plugin, I can send you in private message if possible
     
  7. You could destroy it on death...
    Code:
    void OnEntityTakeDamage(BaseCombatEntity entity, HitInfo info)
    {
        if (entity == null || !(entity is BasePlayer)) return;
        NextTick(()=>{
            if (entity != null && entity.health <= 0f)
            {
                ...Your Destroy UI Code
            }
        });
    }
     
  8. It was decided, thanks all