Besides global variables, Lua supports local variables. Lua creates local variables with the local statement:
Eight = 8 -- Global Variable
local Eight = 8 -- Local Variable
10 = 11 -- This is very much incorrect
and will result in an error.