Skip to content

$guildLowestRole

$guildLowestRole will return the lowest role of a specific guild.

Usage

$guildLowestRole[guildID?]

Parameters

FieldTypeDescriptionRequired
guildID?numberThe ID of the guild.false

Example(s)

This will return the ID of the lowest guild role:

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