I want to convert a google spreadsheet into a Lua table. I’m not very knowledgeable about navigating spreadsheets as far as programming goes, so I was wondering if anyone might have a module or a script that achieves this?
I don’t really think it is similar to what the user was requesting.
@Ethan_Waike best bet is:
- Export to CSV.
- Import this into a Module into your game (assuming you want to do this in Roblox Lua exclusively)
- Write a script that can parse the CSV (Comma Seperated Value) format into a two dimensional table. The format is here:
Hope this helps.
4 Likes