I co-own a group with 9 published, active games. It’s already annoying enough that Roblox does not tell us which games that a GDPR request is coming from, so I have to manually check them all.
But the other problem is leaderboards - I have a game with a weekly leaderboard, and it creates a new OrderedDataStore every week to track how many kills that every player gets. We also have some updates planned to implement even shorter time spans, like daily leaderboards.
The problem is that each game ends up having hundreds of Datastores over time that could contain a player’s UserId if we want to have an ordered leaderboard. On top of that, Datastores are throttled so I can’t even make a script to run back through every week or day of leaderboards and erase them instantly. And the longer the game exists and the more leaderboard datastores are created, the process becomes even longer each time.
Is there any reasonable way with a script to quickly go through all 9 games at once and potentially hundreds or thousands of datastores to remove instances of a UserId?