Skip to content

$userBannerColor

$userBannerColor will return the profile banner color.

Usage

$userBannerColor[userID?]

Parameters

FieldTypeDescriptionRequired
userID?numberThe ID of the user.false

Example(s)

This will return your profile banner color (if any):

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