I'm trying to get information about a developer product in my game using this code:
local marketService = game:GetService("MarketplaceService") local product = 996552931 local info = marketService:GetProductInfo(product) print(#info)
The result I get is an empty table, and #info is 0. What's going on?
local info = game:GetService("MarketplaceService"):GetProductInfo(996552931, Enum.InfoType.GamePass).PriceInRobux print(info)
This should probably work.