|
Thane_1Join Date: 2009-04-08 Post Count: 3406 |
So, you have a string in a table, and you want to insert a table into it that string? That doesn't really make sense. If you want to insert a string into a table you can use table.insert(Table,String)
~ Who's awesome, you're awesome ~ R$79,631 Tx1,332 |
|
vlekje513Join Date: 2010-12-28 Post Count: 9057 |
you cant store a table inside a string.
you could do "2,3,4,6,36,26,1" tho |
|
|
This?
local table = {"Momma", Dadda"}
local stringTable = {"Get out", "Never"}
table.insert(stringTable, unpack(table)) |
|
|
|
Praise LilMcManiac, for having the most reasonable response here! |
|
|
|
Maybe "outside-the-box response" is more accurate. |
|
|
|
|
Sorry, what I'm trying to do is have the script insert the entire player list into one table, and having each player hold another table. What's the workaround for this? |
|
|
Nevermind, I got it.
playerInfo = {}
for i, v in pairs(game.Players:GetChildren()) do
playerInfo[v] = {val = 1, val = 2}
end
I'm still learning |
|
|
79,631 1,332
-your friendly neighborhood scripter |
|