I am working on a bullet hell game, and my first idea of how I would chart is . . . not very efficient. I thought maybe if I make a system that when I click, it saves it into a file (or a ROBLOX list) that then I could use to efficiently chart the bullets.
How could I go around doing something like that? I would want it to save the time value (which I already have) and send it to a ROBLOX list or file whenever I click. I would want that list to be able to be used by me.
As much as I know, there’s no possible way to do that, counting that your asking roblox studio for file access and will just need admin permission (windows mainly)
You don’t need a file. You could save the time values in a table. When you click, it inserts a new time value element into the table. Then when you’re done you can save that table to data store, or you can use JSONEncode to convert it to a string and send it somewhere you can save it.