Skip to content

Getting started | Local literal variables

Andrzej edited this page Oct 18, 2025 · 5 revisions

What are literal variables?

Literal variables store values that represent data that can be written down like text or numbers (exceptions apply)

How to create a literal variable?

Important

These follow the same rules as player variables do, so:

✅ $literally1984
✅ $releaseTheEpsteinFiles
❌ $Stupid
❌ $69
❌ $site_02_report

To create one, simply do this:

$myVariable = "Hello, World!"
$myVar2 = 2137
$var3 = true

And you can later use these values for whatever you fancy.

Clone this wiki locally