Roblox Studio refusing to publish certain places

Reproduction Steps

My system specs:
AMD Ryzen 7 2700X Eight-Core Processor
32GB
NVIDIA GeForce RTX 2060

Expected Behavior

I expect the file to publish, at least after a couple tries.

Actual Behavior

For some reason the place does not publish, displaying this error consistently for days on end. There is no clear reproduction for this, it appears to happen at seemingly random times. So far I have not been able to publish the file, either to a new place, doesn’t matter if teamcreate is enabled or not. This is severely impacting my ability to continue on my models as it means I can not continue on these places in a teamcreate, which I intend to do.

I have attempted to publish my stuff for about 2 to 3 days now, with dozens of attempts spread out over these days, with no results.


Issue Area: Studio
Issue Type: Other
Impact: High
Frequency: Constantly
Date First Experienced: 2023-03-09 00:03:00 (+01:00)
A private message is associated with this bug report

1 Like

Surely a problem with CSG, as the errors mention “Union”. Do you have many of them in your certain games? Do they have a lot of triangles?

A little code to see how many Operations exist

local c = 0 for _,p in ipairs(game:GetDescendants() do if p:IsA("UnionOperation") or p"IsA("NegateOperation") then c += 1 end end print(c)

Does saving the place as a local file work?

2 Likes

Hey Robin,
Sorry to hear that your place isn’t publishing - that’s pretty frustrating. Can you do what SomeFedoraGuy said and try running that code to see how many CSG assets you are publishing? And would you also mind sharing the place file in a DM with me? I can take a closer look at it that way.

1 Like

Sent a DM with the information requested

1 Like