EX:
Help plz
Scripts
How to add table.....
How to add table.....
1

herp = {}
herp[1] = {name="lol"}
herp = {}
table.insert(herp, 1, {name="lol"})
Re: How to add table.....-- One way of doing it
tbl = {}
tbl[1] = {name="ODIN'S BEARD"}
tbl = { --I personally prefer tihs
	[1] = {
		name = "ODIN'S BEARD",
	}
}
table.insert(tbl,{name="ODIN'S BEARD"}) --more expensive than the variants listed above and really, not as convenient
herp={
	[1]={
		["name"]="lol"
	}
}
ratratrat: Show us how you define your table.
Apache uwu is right, however in my mind, if you have a string index without spaces, simply writing it is more eye candy than enclosing it in [""]. If it does have spaces however, you should do that.
1
