My issues with the new Creator Dashboard
+1 on this one. I have a plugin and I’ve been watching my sales for a while through the old develop pages because I could not find a way to check them on the new creator dashboard. With the removal of the develop pages this has become really upsetting as now there is no way I can determine the popularity of my plugin because favorites are not a good metric considering many players forget to favorite the items they install/get, which is understandable.
My current work around is using marketplace service in studio to determine my sales, please Roblox let this not be something that is handled by a third party browser extension.
How to figure out how many sales you have:
local marketplace = game:GetService("MarketplaceService")
print(marketplace:GetProductInfo(10301321106,Enum.InfoType.Asset))
Where 10301321106
is your asset id, and depending on which asset you need, you can change Enum.InfoType to that asset type.
Non-Scripter Walkthough
For those who are not scripting inclined, and would like to check your sales, and you can’t through the new Creator Dashboard, here is a little walk-through on how to go about it:
- Go to the
View
tab at the top of Roblox Studio
- Enable
Output
and Command Bar
- Enter the script above into the command bar like so:
The command bar should be at the very bottom of Roblox Studio
Replace the asset id, which is the long number ( The red box in the screen shot ) to your asset id. It can be found in the “URL” of your item on the Creator Dashboard like so:
To run the script all you need to do is press enter while you are still in the command bar typing:
Issues:
Issue 1:
If you run into this issue when running the script:
It can be because of two reasons, either you have typed the Asset ID wrong, or the
Enum.InfoType
is the wrong type. If your
Enum.InfoType
is incorrect, you can erase the
.Asset
part and type a period
.
after
Enum.InfoType
like so:
This will let you select an InfoType from the list of different types.
Issue 2:
If you run the script successfully but you get this:
It is because you have
Log Mode
turned on, to disable this, click the 3 dots at the top right of the
Output
window and make sure
Log Mode
is
unchecked like below:
After that just run the script again.
Hope this helps!