So i got many booleans saved on roblox’s cloud using datastore service, i need to set 1 of the many booleans to false for everyone who have ever joined the game, by default it’s set to false but some might’ve already reached smth to set it to true so i need for these to set it to false, how tho?
1 Like
You can’t change it without the key.
Can’t i even erase the boolean data?
The best way to do this would be to add some code that will set it appropriately when the player joins the game.
If you really want to do it now, and this process would take quite a while longer to avoid rate limiting, you can use DataStore:ListKeysAsync(), and use DataStore:UpdateAsync() to correct it.