...
- Always use meaningful variable names to avoid confusion and keep your scripts readable.
- When a name is used again its original value will be overwritten.
- Only use the following characters for variable names: A-Z, a-z, 0-9, and the underscore
- Lists can contain different variable types, even other lists or variables, e.g.
mixedValues = [Vector.new(0.0, 1.0, 0.0), "Cube01", 3.14, 200, ["DY_Emitter01", "DY_Emitter02"]]
...