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.
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