Skip to content

$guildCount

$guildCount will return the amount of guilds where your bot is in.

Usage

$guildCount

Example(s)

This will return the amount of guilds your bot is in:

1
client.command({
2
name: "guildCount",
3
code: `
4
I'm in $guildCount guilds!
5
`
6
});