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

# Silence

> Silence users or roles in specific channels or across the entire server without kicking or banning them.

# Silence

> Silence users or roles in specific channels or across the entire server without kicking or banning them.

## Overview

The Silence module allows moderators to quickly mute a user or a role in a specific channel or globally across the server. This restricts them from sending messages or creating threads, providing a powerful way to de-escalate situations without issuing formal timeouts or bans.

## Silencing Users and Roles

<Tabs>
  <Tab title="Specific Channel">
    ```bash theme={null} theme={null}
    ;silence @user #channel
    ```

    Silences the specified user in the specified channel. If no channel is provided, it defaults to the channel where the command was run.
  </Tab>

  <Tab title="Global Silence">
    ```bash theme={null} theme={null}
    ;silence @user *
    ```

    Silences the user globally across the entire server.
  </Tab>
</Tabs>

## Unsilencing

To lift a silence from a user or role:

```bash theme={null} theme={null}
;unsilence @user #channel
```

If they were silenced globally, you can unsilence them globally using:

```bash theme={null} theme={null}
;unsilence @user *
```

## Viewing Silenced Users

You can view a list of all currently silenced users and roles in a channel or across the server.

<AccordionGroup>
  <Accordion title="Check a Specific Channel">
    ```bash theme={null} theme={null}
    ;silence list #channel
    ```

    Shows all users and roles silenced in that specific channel.
  </Accordion>

  <Accordion title="Check the Entire Server">
    ```bash theme={null} theme={null}
    ;silence list *
    ```

    Shows all active silences (both channel-specific and global) across the entire server.
  </Accordion>
</AccordionGroup>
