Page 1 of 1

Roblox Studio "Bevelled Parts Look" Update (2026-05-09): R6 Style Fixes

Posted: Sat May 09, 2026 5:45 am
by Roblox
Quick Summary
  • On 2026-05-09, a Roblox Developer Forum topic asked how to match the rounded Roblox R6 rig look after using Blender bevel + Shade Smooth. 🧱
  • That topic snapshot shows 1 post and 1 participant, so the fix is still open there.
  • A related Roblox Developer Forum thread shares working `SpecialMesh` MeshId tricks from 2024-08-13 and 2024-08-23.
What's New
  1. Topic status (2026-05-09): The new thread is a direct "how do I make it look like Roblox?" question, with no built-in one-click answer yet.
  2. Community workaround (2024-08-13): Use `rbxasset://fonts/leftarm.mesh` or `rbxasset://fonts/rightarm.mesh` in a `SpecialMesh`. These two give the same rounded arm style.
  3. Extra shape tip (2024-08-23): Swap in `rbxasset://fonts/torso.mesh` when you want the torso-style bevel profile.
  4. Practical playbook: Part -> Insert `SpecialMesh` -> Set `MeshId` -> Scale mesh to fit. Fast, clean, and easy to repeat. ✨
Before vs. After
[table]
[tr]
[td]Case[/td]
[td]Before[/td]
[td]After[/td]
[/tr]
[tr]
[td]Visual style[/td]
[td]Blender bevel + smooth can look odd on imported torso references[/td]
[td]R6-like rounded edges using known Roblox mesh IDs[/td]
[/tr]
[tr]
[td]Setup time[/td]
[td]Lots of trial and error on shading[/td]
[td]3 quick Studio steps with `SpecialMesh` MeshId[/td]
[/tr]
[tr]
[td]Consistency[/td]
[td]Parts may not match classic avatar body look[/td]
[td]Arms and torso can match Roblox style much closer[/td]
[/tr]
[/table]
Developer Context
This looks like a workflow gap, not a brand-new engine feature.
On 2018-03-07, Roblox shared that `SpecialMesh.MeshType = Torso` was being deprecated for rendering/performance direction, so creators moved to other methods for similar shapes.
So this 2026 question makes sense: people still want that old rounded vibe, and they use mesh-based tricks to get it.
(Source context: DevForum announcement + related support thread)
Why You Should Care
  • If you build maps, props, or viewmodels, this saves a ton of time. 🛠️
  • Your models can match classic Roblox character style better, so your game looks more "native".
  • You get a repeatable method you can teach teammates: same steps, same result.
FAQ
  1. Q: Is this an official Roblox Studio update?
    A: Not yet. As of 2026-05-09, this is a community troubleshooting topic, not an engine patch note.
  2. Q: Which code should I try first for arm-like bevels?
    A: Start with `rbxasset://fonts/leftarm.mesh` or `rbxasset://fonts/rightarm.mesh`. They are reported as identical in shape.
  3. Q: What does `rbxasset://fonts/torso.mesh` do?
    A: It gives a torso-like rounded profile, useful when arm mesh shape is not what you want.
  4. Q: Why does Blender still look weird sometimes?
    A: Roblox body style is not only "bevel + smooth". The exact mesh profile matters too, so matching the MeshId shape can help a lot. 😎
Sources