LUA strings code example
Example 1: lua print
print("text here")
-- or
extra = "more text"
print("text here " .. extra)
Example 2: lua table of all characters
for i=32, 256 do
chartable[i] = utf8.char(i)
end
Example 3: lua text script
print("Lua lua!")
wait(1)
print("AYYY!")
wait(1)
print("AYYY!")
wait(1)
print("Lua lua..")
end
end)
print("EEE")