> ## Documentation Index
> Fetch the complete documentation index at: https://docs.borntocraftstudio.net/llms.txt
> Use this file to discover all available pages before exploring further.

# Mob Kill Player Event

> Triggers when a BTCMob kills a player.

The `btcmob_kill_player_event` triggers when a player is killed by a specific BTCMob.

## Configuration

<ResponseField name="btcmob_kill_player_event" type="Map" required>
  Configuration for the kill player event.

  <Expandable title="Properties">
    <ResponseField name="mobName" type="String" required>
      The internal name of the BTCMob that killed the player.
    </ResponseField>
  </Expandable>
</ResponseField>

## Examples

```yaml theme={null}
btcmob_kill_player_event:
  mobName: "Boss"
  triggers:
    - action: send_message
      message: "You were crushed by the Boss!"
```
