Skip to content

$randomText

$randomText will return a random word out of the given query

Usage

$randomText[text;text;...]

Parameters

FieldTypeDescriptionRequired
textstringAny words/sentences/letters you want to be chosen randomly.true

Example(s)

This will return a random text out of Hello, Bye, Goodnight, See you:

1
client.command({
2
name: "randomText",
3
code: `
4
$randomText[Hello;Bye;Goodnight;See you]
5
`
6
});