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

# Track Actions

> Move players along promotion and demotion tracks.

Track actions allow you to progress players through a series of groups defined in a LuckPerms track. This is ideal for automatic rank-up systems or punishment tiers.

## Available Actions

| Action ID        | Description                                             |
| :--------------- | :------------------------------------------------------ |
| `promote_action` | Moves the player up one level on the specified track.   |
| `demote_action`  | Moves the player down one level on the specified track. |

## Configuration

<ResponseField name="track" type="Var<String>" required>
  The name of the LuckPerms track.
</ResponseField>

## Example Usage

<CodeGroup>
  ```yaml Rank Up theme={null}
  # Promotes the player on the 'survival' track
  promote_action:
    track: "survival"
  ```

  ```yaml Rank Down theme={null}
  # Demotes the player on the 'donator' track
  demote_action:
    track: "donator"
  ```
</CodeGroup>
