Roblox studio Smooth Angle refusing to work for the past two weeks

When applying smoothangle to a union operation part to smooth out the angles for the part by applying 180 to the part that is selected, smooth angle will not apply. I have done a refresh reinstall of roblox studio completely but still get the same result of smooth angle that will not apply to any of the union operation parts now.

and with output displaying error:

SolidModel SmoothingAngle compute failed.
Screenshot 2025-11-15 202035

9 Likes

UPDATE:
Performed another fresh reinstalled on roblox, and roblox studio refusing to perform a smooth angle onto any union operations at all, does anyone know a fix for this?

4 Likes

I am also experiencing this problem.

5 Likes

Yes. Didn’t know one of the PTFS devs would also encounter the same exact problem lol. It’s so absurdly annoying, and CSG airplanes look like :poop: rn

On my post, one of the staff member said that “they will be looking into the problem”, which they probably never truly did

2 Likes

BTW i thought this was a niche bug, also reinstalling never works in these awful bugs.

2 Likes

I’m also having this issue, with a very similar situation to the OP.

3 Likes

We need this problem to get recognized.

2 Likes

Hi, I’ve looked into this issue and I see what’s happening. We’re currently replacing the smoothing algorithm with one that should be considerably more predictable, but unfortunately we didn’t take care of the fallback paths correctly.

I have a fix ready that I’ll get turned on as soon as possible, but it will be a couple of weeks before I’m able to flip it on. I’m also looking into flipping an existing flag to fix this issue sooner, but I can’t promise anything there.

As a workaround for the time being, although it’s a little annoying, you can use the GeometryService API, which correctly routes into the new smoothing algorithm. Pasting this in the command bar would work for most cases:

local results = game:GetService("GeometryService"):UnionAsync(workspace.Union1, {}); results[1].Parent = workspace.Union1.Parent; workspace.Union1:Destroy()

If you do try it, let me know if it produces bad results for any of your use cases! It should look better a lot of the time.

Sorry for letting this bug slip through and go unfixed for a matter of weeks. Thanks a lot for reporting it and drawing attention to this issue! Please don’t hesitate to report bugs as soon as you’re confident something is wrong.

9 Likes

How does that command work? I don’t understand it.

2 Likes

Paste it in the command bar and change the bits saying “Union1” to whatever the union is called that you want to smooth. It will replace the union with one that allows smoothing.

For me it deletes part of the union however so I would be cautious using it.

5 Likes

Alright, thanks dude! Now i can get to work to making airliners now.

1 Like

I’ve got a question. Can any of you make the new smoothing algorithm into a beta feature?

1 Like

Can I just point you towards this bug that may be related, or perhaps coincidence, but seems to have broken in a similar timeframe.

I’ve also noticed (before that bug linked happened) that the Smooth Angle didn’t work properly on the new geometry once SubstituteGeometry had been used and I had to set the angle to 0 then back to a non-zero value in order to get it to smooth it.

1 Like

An easier to use version of this would be as follows, this will work with the active selection rather than requiring you to specify the name of the part in the script.

local sel = game:GetService("Selection"):Get()
local part = sel[1]
if not part then return end

local results = game:GetService("GeometryService"):UnionAsync(part, {})
results[1].Parent = part.Parent
part:Destroy()
2 Likes

Same here, haven’t touched my aircraft project since the bug happen.

If we can get this into a temporary plugin button until the patch is release, this will be great

The fact that most of us are trying to make aircraft is relatable as hell.

1 Like

I find using solid modeling unions to be more satifying to do than mesh.

Heres a little showcase of my experience with using union operations since it ever release as a feature on roblox



1 Like

Here’s a quick plugin that adds Union and Intersect actions that uses the GeometryService method above. It should work roughly as the standard Union and Intersect does except for slightly different behaviour with negation (as Negative parts can’t be unioned in the same way via the API). It supports undo and seems to work fine in my quick tests.

https://create.roblox.com/store/asset/77974630332181/GeometryService-Operations

1 Like

Hi, the new smoothing angle algorithm is really just a necessary part of bigger changes we’re making, so it wouldn’t work as a beta feature.

A plugin button would work, but as you may have noticed, Undo doesn’t work with those commands. Instead, I’ve flipped the new algorithm off, which will make smoothing work as before when using the studio buttons. The downside is that smoothing will NOT work when using the GeometryService API, such as the scripts shared in this thread. The flag flip is rolling out right now.

3 Likes