So I’m trying to figure out how to convert a string into a table.
So for example right now I have a string that’s just "0,1,2,3,4"
This string then gets [ and ] added onto it and it becomes "[0,1,2,3,4]"
And I can run JSONDecode on it just fine.
But when I try putting in like "[0,1,2,3,4,Text Title Here, 5]"
It just cant parse the JSON, is there something I do not understand about the format? Is there anything hacky I’d have to do to get this to work?