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

# Build a Welcome System

> Create a beautiful, branded welcome experience for new members.

## Goal

Build a professional welcome system with a custom embed, role assignment, and ghost-ping — all automated.

## Steps

<Steps>
  <Step title="Create a Welcome Embed">
    ```bash theme={null}
    /embed create welcome_card
    ```

    In the interactive editor:

    * **Title:** `Welcome to {server_name}!`
    * **Description:** `Hey {user_name}, you are member #{server_membercount}!`
    * **Thumbnail:** `{user_avatar}`
    * **Color:** `#9333ea`
    * **Footer:** `Enjoy your stay!`
    * Click **Save**.
  </Step>

  <Step title="Enable Welcome Messages">
    ```bash theme={null}
    /welcome enable #welcome
    /welcome message Welcome {user}! Check out #rules to get started. {embed: welcome_card}
    ```
  </Step>

  <Step title="Setup Autorole">
    ```bash theme={null}
    /autorole set @Member
    ```
  </Step>

  <Step title="Test Everything">
    ```bash theme={null}
    /welcome test
    ```
  </Step>
</Steps>
