Skip to content

$thumbnail

$thumbnail adds a thumbnail to an embed (upper right corner image).

Usage

$thumbnail[index?;URL]

Parameters

FieldTypeDescriptionRequired
index?numberEmbed position/index.false
URLstringThumbnail Image URL.true

Example(s)

Here’s an example of how to create an embed that includes your avatar:

1
client.command({
2
name: "thumbnail",
3
code: `
4
$thumbnail[$userAvatar[$authorID]]
5
$description[Hello! This is your avatar.]`
6
});