I wanna add another table to a pre-existing dictionary. I’ve figured out how to add another table but then it removes the past tables.
I’ve tried this
local datatoupdate= {
["fields"] = {
["Golds"] = {
["integerValue"] = "25",
},
["Banned"] = {
["booleanValue"] = false,
}
}
}
datatoupdate["fields"] = {datatoupdate["fields"], ["Testing"] = "Hello"}
problem is that it just a dictionary inside dictionary with a table I want just a dictionary with tables.
Not sure if I explained it well but we will see.
Thanks for any help in advance.