The GDPR (General Data Protection Regulation) is a regulation in EU law and in California (though to a lesser extent) to enhance individual’s control and rights over their data. The Right-To-Erausre requests aren’t something you can ignore because by doing so you’d be breaking the law. This isn’t an exaggeration, it’s just how the law works. If you’re actively not complying Roblox has the right (to do anything really but in this case) to take moderation action against your account
Just because the task is too trivial doesn’t give you an excuse to ignore these requests. Top Developers often automate these tasks because they follow good coding practises and outline for the worst in their datastores (whether it be external or Roblox’s).
@Frepzter The solution would be to go use Roblox’s API Docs page. In this case we want to find the Username from the UserId so go here and you’ll need to write the request in a json format. Copy past the following into the request parameter:
{
"userIds": [
99
],
"excludeBannedUsers": false
}
Replace 99 with the UserId you want to find the Username from and you should find it in the response body.
I should also mention that if it’s too late, you won’t get their username anymore (because the data has already been deleted, duh). My solution to this would honestly be to contact Roblox support explaining your situation.