Skip to content

$userLowestRole

$userLowestRole will return the lowest role of a specific user.

Usage

$userLowestRole[userID?;guildID?]

Parameters

FieldTypeDescriptionRequired
userID?numberID of the user you want the lowest role to be returned of.false
guildID?numberThe ID of the guild.false

Example(s)

This will return the ID of your lowest role:

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