I’m trying to create a ban/command log system that records all bans and commands in chronological order. Was wondering if I should use data stores, ordered data stores, memory service, or an external server.
I was hoping to use ordered data stores but the value can only be a positive integer in order for it to be sorted. However, I need to store more information than just this.
You can make two DataStores. One is the OrderedDataStore that stores your numbers and the other normal DataStore that stores more information about things.
I’m talking about one datastore, not even an OrderedDataStore. It would have to be manually ordered, but it would keep all information in one place and would be very efficient. Having two datastores, a “normal” datastore and an OrderedDataStore would likely work, but it can be messy and grabbing too much data in a short amount of time can slow the scripts down.