How would I do this:
local table = {}
table.insert(tableL,"Bruh" = 50,)
how can I make the string have a value atached.
How would I do this:
local table = {}
table.insert(tableL,"Bruh" = 50,)
how can I make the string have a value atached.
Two ways:
local tableL = {}
tableL["Bruh"] = 50
local tableL = {["Bruh"] = 50}
it will insert it so add it to the table instead of removing everything and only changing it to bruh. right
Then option 1 should be the way to go.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.