Skip to content

$randomUserID

$randomUserID will return a random username.

Usage

$randomUserID[global/guildID?]

Parameters

FieldTypeDescriptionRequired
global/guildID?stringReturn a random user out of all guild or out of one specific guild only.false

Example(s)

This will return a random user id:

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