Variable
by:
cyrus01337A variable is something that can be created, changed and referenced:
-- Creating
local myVariable = 0
-- Changing
myVariable = 3
-- Referencing
print(myVariable * 5)
-->
by:
cyrus01337A variable is something that can be created, changed and referenced:
-- Creating
local myVariable = 0
-- Changing
myVariable = 3
-- Referencing
print(myVariable * 5)