Hello! I’m working on a gear testing game which involves the ability to equip gears. Because I need lots of gears (hundreds) I’ve currently preloaded them all into a folder in serverstorage via a script i ran in the command line. What I am wondering is if this is more efficient than trying to use insert service at run time? (Since i’d be making a lot of requests, which my logic was it would not be good for the performance of the server.) Basically, I’m wondering if keeping them all in the folder in serverstorage is a better idea than loading them during the game.
(bear in mind that putting them all in a folder has proved quite costly memory wise)
Thank you!