How to check if AllowThirdPartySales is disabled via a script?

With AllowThirdPartySales being relocated from the workspace to game settings, you can no longer check if ThirdPartySales is enabled via the workspace property. I am wondering if there is a new way to check if they are enabled or disabled. I would think this would be a popular question but after about 30 minutes of digging, I have still not managed to find an answer.

Update: I used pcall and if it was not successful I assumed either AllowThirdPartySales are disabled or another error occured.

You can check the AllowThirdPartySales property in the workspace.

if game.Workspace.AllowThirdPartySales then
	print("Enabled")
else
	print("Disabled")
end

The workspace property is no longer valid. You can have AllowThirdPartySales enabled in settings and it will still be disabled in the workspace.