$guildLowestRole
$guildLowestRole will return the lowest role of a specific guild.
Usage
$guildLowestRole[guildID?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| guildID? | number | The ID of the guild. | false |
Example(s)
This will return the ID of the lowest guild role:
1client.command({2 name: "guildLowestRole",3 code: `4 $guildLowestRole[$guildID]5 `6});