-
Notifications
You must be signed in to change notification settings - Fork 2
Getting started | Local literal variables
Andrzej edited this page Oct 18, 2025
·
5 revisions
Literal variables store values that represent data that can be written down like text or numbers (exceptions apply)
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.
(These tutorials are ordered, start from the top)