How to change player stats that is not in game

how would I go by changing a player stats that isn’t in game. Would I use updateasync

1 Like

It depends on the way your game loads and saves data. I assume your game saves player data using a specific key related to said player. So you can just use that key to load their data, add the change you want to said data, and then use the key again with your save function and the updated version of their data to save it.

2 Likes

Do I use updatesync or what?

Extra text

1 Like

Yes you would use UpdateAsync or SetAsync

1 Like