What is DataPersistence?

Hey, i recently found this in the server developer console of my game while having datastore problems.
Anyone have any idea what this is?
unknown
I found this in my console while looking for the cause of datastore issues, could this cause any issues?

It just means you’re using a piece of code which is deprecated. Are you not using DataStoreService?

Normally i should be using DataStoreService yes, what is the alternative i could be using?

I don’t know, that is your code.

DataPersistence is basically a really old version of DataStores, and were phased out some time ago. It now neither saves nor loads data when used, which may be the cause of these data storing issues you’re facing.

How would i be able to fix this?

Replace the usage of the old DataPersistence functions (Player:SaveString, Player:LoadString etc etc) with DataStores.

Is this gonna erase/reset any data?

Any data stored with DataPersistence was lost anyway when the entire system was sunsetted in May of this year, so it wouldn’t do anything to switch the scripts over to use Data Stores.