I am making a DataStore module for ease of access and I plan on releasing it soon but I would like to know how can I check if a DataStore already exists? ( have a method but I am afraid it will flood DataStore requests. Here is the method :
for _, v in pairs(DataStoreService:ListDataStoresAsync()) do if v.Name == DataStore.Name then return warn("Use an existing datastore!") end end