Skip to content

$setClientAvatar

$setClientAvatar will change the clients’ avatar.

Usage

$setClientAvatar[URL]

Parameters

FieldTypeDescriptionRequired
URLstringThe new avatar URL.true

Example(s)

This will change the client’s avatar to the command author’s user avatar:

1
client.command({
2
name: "setClientAvatar",
3
code: `
4
$setClientAvatar[$userAvatar[$authorID]]`
5
});