how to make a variable in lua code example
Example 1: lua add 1 to a variable
variable = variable + 1
// you cannot use += notation to iterate a variable
Example 2: lua variables
local NumberVariable = 1
local StringVariable = "TextHere"
local BooleanVariable = true --// can also do false