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

# Execute Skill

> Run a MythicMob skill on behalf of a player.

The **Execute Skill** action allows you to trigger a MythicMob skill. The player is considered the "caster" and the skill targets whatever the player is currently looking at or is defined in the skill logic.

## Configuration

| Key         | Type     | Description                                       |
| :---------- | :------- | :------------------------------------------------ |
| `skillName` | `String` | The internal name of the Mythic skill to execute. |

## Usage Examples

### Visual Feedback

Play a MythicMob particle skill when a player completes an interaction.

```yaml theme={null}
id: play_success_fx
type: execute_mythicmob_skill
skillName: SuccessParticles
```

### Scripted Combat

Force a player to "cast" a specific Mythic skill during a cutscene or event.

```yaml theme={null}
id: force_lightning_strike
type: execute_mythicmob_skill
skillName: DivineSmite
```
