All right I'm trying to insert all the values between ':'s into a table. I'm not really sure how to explain it so here's an example of what I'm trying to achieve >>
local unformattedString = "Starter Sword:ohls:5:45:100:md" --and after formatting it, it will become a table with all the data seperated formattedtable = {"Starter Sword", "ohls", 5, 45, 100, "md"}
A couple problems that I'm thinking off. If you look in the string "Starter Sword", "ohls", and "md" aren't strings but after formatting them they are strings? I'm not sure how I would do that.
Again I'm not sure how I would grab the stuff between the lines, anything will help :)