- Joined
- Sep 7, 2015
- Messages
- 2,758
- Solutions
- 127
- Reaction score
- 2,277
Hello, I have problem with inserting values to table...
I have table:
and I want to insert value into this table as following:
I'm trying:
but it does not work for me...
I have table:
Code:
local t = {}
Code:
local t = {
{text = "xxxx"}
}
I'm trying:
Code:
table.insert(t, {text = "xxxx"})
but it does not work for me...
Last edited: