vendinY
(ven)
#1
hey,
what I’m trying to do is to insert new variables into a table, I expect the result to be like this:
but the result isn’t what I expected:
as you can see, the table is instantly a number despite me already attempting to add variables inside that table. I’m not sure what I’m doing wrong:
sorry for my horrible explanation, but please do tell me if you have questions. thanks!
you mean something like this?
local towers = {}
table.insert(towers,{["Pistol Man"] = {Progress = 0, Achieved = {}}})
for _,v in ipairs(towers) do
print(v)
end
1 Like
Actulurus
(Arcturus)
#3
Seems like it’s caused by a different part of the script, mind sending the entire code please?
vendinY
(ven)
#4
exactly what I’m looking for! I thought the method I’m using is also doable. thanks a bunch!
system
(system)
Closed
#5
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.