Getting Marketplace Errors

Hello! I’ve been getting Marketplace errors, although I’ve never gotten them before. From experience, I have realized that I usually only get them when Roblox is experiencing major issues, but I do not see any issues from the Platform/Games.

Is there anything I can do to fix these, or is Roblox just bugging?

its a bug from what i can guess

So is it a Roblox issue, or my game issue?

image

It’s a Roblox issue

1 Like

yes its a roblox bug, do not worry

Wrap your issued MarketplaceService API requests inside pcall() as to handle any potentially raised/thrown errors.

1 Like

yeah

a, b = pcall(function() 
--your script here
end)
if b then print("failed\n\error:\t" .. b) end