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?
It’s a Roblox issue
yes its a roblox bug, do not worry
Wrap your issued MarketplaceService API requests inside pcall() as to handle any potentially raised/thrown errors.
yeah
a, b = pcall(function() --your script here end) if b then print("failed\n\error:\t" .. b) end