> ## 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.

# Mythic Mob Segment

> Spawn a MythicMob temporarily during a cinematic sequence.

The **Mythic Mob Segment** allows you to spawn a MythicMob at a specific time during a cinematic. The mob is automatically hidden from other online players, ensuring it is only visible to the cinematic viewer. It is also automatically despawned when the segment ends.

## Configuration

| Key        | Type       | Description                                  |
| :--------- | :--------- | :------------------------------------------- |
| `mobName`  | `String`   | The internal name of the MythicMob to spawn. |
| `location` | `Location` | The position where the mob should appear.    |

## Usage Examples

### Dramatic Appearance

A mob appears in front of the player during a dramatic reveal segment.

```yaml theme={null}
id: boss_reveal_cinematic
type: mythicmob_cinematic
segments:
  - startFrame: 100
    endFrame: 200
    mobName: ShadowDragon
    location:
      world: world
      x: 50
      y: 70
      z: 50
```
