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

# Welcome Setup

> Set up a custom welcome message for members who join your server.

# Welcome Setup

> Set up a custom welcome message for members who join your server.

<CardGroup cols={2}>
  <Card title="Leave setup" icon="door-closed" href="/server-config/leave-setup">
    Configure a leave message for when members leave your server.
  </Card>
</CardGroup>

<Tip>
  Use [embed scripting](/resources/scripting/embeds) and [variables](/resources/variables) to create fully personalised welcome messages.
</Tip>

## Set a welcome channel

Send a welcome message to up to **3 channels** (or **5** for [donator servers](/overview/donator-perks)). Each channel has its own message — run the command again with a different channel to add another.

<CodeGroup>
  ```bash Syntax theme={null} theme={null}
  ;greet set (#channel) (message or embed code)
  ```

  ```bash Example — plain text theme={null} theme={null}
  ;greet set #welcome Welcome to {server.name}, {user.mention}!
  ```

  ```bash Example — embed theme={null} theme={null}
  ;greet set #welcome {embed}$v{color: #7B68EE}$v{title: Welcome!}$v{description: Hey {user.mention}, welcome to **{server.name}**! You're member #{server.count}.}$v{thumbnail: {user.avatar}}$v{footer: {server.name} && {server.icon}}
  ```
</CodeGroup>

## Remove a channel

Remove a single welcome channel without affecting the rest.

<CodeGroup>
  ```bash Syntax theme={null} theme={null}
  ;greet unset (#channel)
  ```

  ```bash Example theme={null} theme={null}
  ;greet unset #welcome
  ```
</CodeGroup>

## Preview a channel's message

```bash theme={null} theme={null}
;greet view (channel)
```

Sends the configured message for that channel in the current channel — useful for previewing before going live.

## View configuration

```bash theme={null} theme={null}
;greet config
```

## Remove all welcome channels

```bash theme={null} theme={null}
;greet reset
```

Clears every configured welcome channel and message.
