Posted 14 December 2016 - 09:55 PM
Alright, before I weird you out.
I'm sending data between machines, and I want to list the data as icons. Now, the tricky part is that I can't just slap the string as is on there.
An example of what the string would look like:
And I'm trying to figure out the conversion from that to
I'm sending data between machines, and I want to list the data as icons. Now, the tricky part is that I can't just slap the string as is on there.
An example of what the string would look like:
local str = "potato, cabbage, carrot"
And I'm trying to figure out the conversion from that to
local str = "potato, cabbage, carrot"
local strTable = {
"potato",
"cabbage",
"carrot"
}
And in true Nothy style, I'm not quite sure how I'd go about it. So I'm asking you for help.Edited on 14 December 2016 - 08:55 PM