> For the complete documentation index, see [llms.txt](https://dbd-ts.gitbook.io/dbdts/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dbd-ts.gitbook.io/dbdts/functions/deleteemojis.md).

# $deleteEmojis

Deletes the provided emojis.

### Usage

```php
$deleteEmojis[guildID;reason;emojiIDs]
```

This function has three params.

| Param    | Description                               | Type      | Required |
| -------- | ----------------------------------------- | --------- | -------- |
| guildID  | The guild which these emoji(s) belong to. | Snowflake | Yes      |
| reason   | The reason for deleting these emoji(s).   | String    | No       |
| emojiIDs | The emojis to delete, separated by `;`.   | Snowflake | Yes      |

### Example

```javascript
bot.commands.add({
  type: "basicCommand",
  name: "example",
  code: `$deleteEmojis[$guildID;;<a:leref_dance:864243873361952778>]` //Deletes the leref_dance emoji
})
```
