Some of you may have received this message from ROBLOX recently:
So although it was unclear which data store from which game the data belongs, I still tried to comply with it by going through my games and deleting data. The problem began immediately on my game Doomspire Brickbattle. There’s one type of data store where I literally can’t delete it, because I do not even know the name of the data store requested to be deleted. So for my game, VIP servers allow special privileges for the owner of the server like being able to kick/ban/etc. certain users. This is done by first checking if the server is indeed a VIP server, using the game.VIPServerId property. Then, to separate each VIP server’s data stores, the VIPServerId (a string) is appended to the name of the data store. I know, I should’ve just used 1 data store or just used the CreatorId, but it’s there now, so that’s where my problem with the preceding message begins. I can’t find out the VIPServerId of a user’s VIP server. The only way I can know is to join his/her server and print the ID to the console. Of course, since the user mentioned in the message at the beginning of this thread is deleted, I can’t ask him to invite me nor will I ever be able get into his server (if it even exists).
Unless there’s a way to retrieve the VIPServerId from any user’s VIP servers, I’m stuck here. I’ll go through and attempt to delete that user’s data stores for those that can be indexed, but in this case, I don’t know what to do. Thanks for reading.