lua programming if code example
Example 1: if statement lua
if (conditon) then
--action #1
elseif (condition) then
--action #2
else
--action #3
end
Example 2: lua if else
if bool then
--code
else
--code
end
if (conditon) then
--action #1
elseif (condition) then
--action #2
else
--action #3
end
if bool then
--code
else
--code
end