Hello this is a strange bug I’m having right now and I believe I have it since a few days because some of my roblox games received more donations than usual, and that explains because people were hoping to appear in the donation board seeking for an opportunity to see their name easily. And none of my donation boards work, they all say N/A, I’m aware that I use a deprecated method and I don’t think it’s the problem because I couldn’t view my datas with any plugin, they’re all empty when I look for orderedatastore.
Please help me!
I feel terrible, and I’m sorry for the people who made donations hoping to see their Robux donations displayed somewhere.
I do believe my datas from GlobalStore still work!
Screenshot from the plugin Data Store Editor
Main code :
local MPS = game:GetService("MarketplaceService")
local DonationProducts = {XXXXX, XXXXXX, XXXXX, XXXX, XXXX}
local function processReciept(reciept)
for i, v in pairs(DonationProducts) do
if v == reciept["ProductId"] then
game:GetService("DataStoreService"):GetOrderedDataStore("TopDonators"):IncrementAsync(reciept.PlayerId, MPS:GetProductInfo(reciept["ProductId"], Enum.InfoType.Product).PriceInRobux)
game.ReplicatedStorage.UpdateDonations:Fire()
return Enum.ProductPurchaseDecision.PurchaseGranted
end
end
end
MPS.ProcessReceipt = processReciept


