Weird Entries: How Do I Delete An Entire Datastore

So after reading this, i went to my data store manager:
And I Found This:

image

After analysing, i realized that they were old entries which i have migrated features n wont use/create them anymore, so is there a possible way to delete them and saving space?

EDIT: Without Deleting them one-by-one manually

1 Like

You can go through all the keys in them and call :DeleteAsync() on the datastore for each key.

(The data in them is minimal, so you shouldn’t worry about the rare odd entry as it isn’t really going to contribute to the limit)

1 Like

I see, but I’m finding for a more easier way since there’s alot of keys in that.

Yes i know the data is small, but i can use this concept to delete larger data in the future

You can try using the ListKeysAsync function to get the keys in the datastore, then use a loop to delete them.

1 Like

So theres no possible way to use this new dashboard? Or any UI Based way?

As far as I know, no.
Generally, datastores aren’t meant to be deleted