I’ve been wondering this, in my projects I use a mix of both just because I don’t know if one is better than the other, or its just personal preference.
This is what I mean:
local Table = {
["Money"] = 500,
["Gems"] = 20,
["DoubleXP"] = false
}
or:
local Table = {
Money = 500,
Gems = 20,
DoubleXP = false
}
Let me know!