I can confirm this is happening to my group Shovelware Systems as well, though it was not an issue before the configure item page switched over to the new create.roblox.com page format. We’re lucky that we released everything for sale a few days ago, but it is no longer possible for us to edit the prices of our uploaded accessories. This does not seem to apply to classic shirts and classic pants.
You could use the roblox API to set the price / set the item for sale, that’s what I did for my ugcs.
It’s interesting to note that while you have this bug, it’s for UGC and not classic clothes. I’m not a UGC uploader so I only have access to shirts/pants/tshirts, so I have no idea if I’d have this issue for UGC as well or not.
This bug is happening for me as well, my UGC items were not taken off sale in my group however I can not change the price of these items it tries to force me to make it 0 and won’t let me do anything else. Please get this bug fixed. It also is happening in multiple groups of mine not just 1.
Do you have any information available on how to do this? I’m not very skilled with APIS and have been experiencing the same issue for days.
same for me. can someone literally fix this its genuinely starting to get in the way of my work
Same here, it’s becoming a serious issue and can’t find any info or a solution to this.
The same thing happens with me. Every peice of clothing on my Group was taken offsale and it will not let me change it. the Configure page still shows its regular price
@Creeper_ofDoom @WawaFluff @SamIsTwisted @Oppressed_II @cpguy5089 @Dogon
A solution to this is using the api, here is what i did to release my items.
Put this code in console in inspect element on roblox.com NOT create.roblox.com , and change “YOURASSETID” and replace “PRICE” with your price in digit format not string.
To upload UGC items:
$.ajax({ url: "https://itemconfiguration.roblox.com/v1/assets/YOURASSETID/release", headers:{'Content-Type':'application/json'},method: "POST", contentType: "application/json", data: JSON.stringify({
"priceConfiguration":{
"priceInRobux":PRICE},
"saleStatus":"OnSale",
"releaseConfiguration":{
"saleAvailabilityLocations":[
0,1
]}})});
To change an Items Price
$.ajax({ url: "https://itemconfiguration.roblox.com/v1/assets/YOURASSETID/update-price", headers:{'Content-Type':'application/json'},method: "POST", contentType: "application/json", data: JSON.stringify({
"priceConfiguration":{
"priceInRobux":PRICE},
})});
I’m getting an error when using this.
to update price it is another api, I will update my post with that method.
Thankyou for sharing it, I hope roblox will fix it soon heh
Thank you helped a lot. Much appreciated.
Hi all! This issue has been resolved. Thanks again for flagging.
Out of curiosity, can we get some info on what went wrong (in the off-chance this issue happens again?)
Edit: Seems like it’s half fixed. I’m no longer getting “maximum price is 0” warnings, however everything I can find that was offsale before is still visually offsale (despite being onsale for 5 robux)
Hey everyone it seems the issue has been fixed, let me know if it works for you all, but as of today I can finally change prices normally etc.
Can someone explain to me why this happens? This error never happened to me, more for the creators of clothes in the community
Bug still happening, most items are still appearing as offsale despite being onsale. The bug wasn’t completely resolved, could we get an update on this?
Edit: Bug still happening despite what music_man1996 is saying below me, I just can’t reply to the thread because they locked it a bit too hastily.