How to remove the User ID from all of records

Last 5 days, I’ve been recieving messages from roblox to erasure one certain User ID


I deleted everything in my place and published it on roblox, but I’m still recieving these messages. It will be nice if some of you would tell me what records and data stores mean to help me to delete this User ID.

2 Likes

Please help me, I recieved another identical message from roblox

local DataStoreService = game:GetService("DataStoreService")

local nicknameStore = DataStoreService:GetDataStore("Nicknames")

local success, removedValue = pcall(function()
	return nicknameStore:RemoveAsync("User_1234")
end)
if success then
	print(removedValue)
end

Source: Data Stores | Documentation - Roblox Creator Hub

2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.