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

# Create Profile Action

> Create a new char slot.

The **Create Profile Action** programmatically creates a new character profile for the player.

## Configuration

<ResponseField name="profileName" type="String" default="New Profile">
  Name for the new profile.
</ResponseField>

<ResponseField name="switchToNew" type="Boolean" default="false">
  Whether to immediately switch to the new profile after creation.
</ResponseField>

<CodeGroup>
  ```yaml Example theme={null}
  action:
    type: create_profile_action
    profileName: "Hero's Journey"
    switchToNew: true
  ```
</CodeGroup>
