I need to use a table in Lua, but I can only reference it through a string, for example:
tabelaA = { "qualquer coisa" }
variavelA = "tabelaA"
print(variavelA)
resultado: "qualquer coisa"
Keeping in mind that I can not reference this table directly, I'll get the string name.