Google Spreadsheet to Lua Table

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:

  1. Export to CSV.
  2. Import this into a Module into your game (assuming you want to do this in Roblox Lua exclusively)
  3. 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