So I know how to add a simple object to a table like so:
local t = {}
table.insert(t, "some value thing")
this will set the table to: local t = {“some value thing”}
but how could i do something like this?
local t = {
["some value thing"] = 123
}