wie man Variablen in lua macht
--Making It
local User1 = "User1.Control"
--using it
User1.MoveLeft
Calm Cardinal
--Making It
local User1 = "User1.Control"
--using it
User1.MoveLeft
--[[
Global variables don't need a declaration like "local." Instead, you'd just
write like this:
]]--
variable = --value
--[[
Note, you don't always have to even assign a value to a variable. You can
use it for the first time and get a value of "nil" which you can update later.
]]--