DataStore2 Usage

So recently I changed my game to use DataStore2. For all of the tutorials I found, the examples showed updating the Store which would Update the Value. The problem for me was, I had scripts all over the place updating the value itself and I would have had to completely rewrite my game to work with it. So, I did the opposite. Whenever a value gets changed, it gets saved to the DataStore. I was just curios, am I the only one that has done this?

Thats’s what you’re supposed to do with DataStore2!
See this page.

Yeah, hm, if you wanna convert a game into DS2, the easy way is to set cash when cash changes in leaderstats for example.
With DS2, you change the CACHED version. It keeps the data there, you modify it, it auto-saves (i think), and that’s it. It saves for you when needed. DS2 takes care of the actual data store work, you just change what it should save or not.