Or if you want the value to just be put at the end of the table, you would do
table.insert(TheTable, TheValue)
that would only work for an array, if this is a dictionary you would do
Table.Key = value
Ex:
local Blah = {
Dog = "the best"
Cat = "boo"
}
-- Add a new value with Cow as the key and idk as the value
Blah.Cow = "idk"
print(Blah.Cow) -- prints idk
Your script is a dictionary, so you would use the second way to insert values.