-
What do you want to achieve?
I want to convert MeshParts into parts with meshes. -
What is the issue? Include screenshots / videos if possible!
I have already tried plenty of times to do it, but all of my attempts either ended with it not working, not being properly scaled, or it being way too big. -
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
Yes, all of them were asking for specialmesh to meshpart instead of meshpart to specialmesh.
After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!
local mesh = workspace.MeshPart
local part = Instance.new("Part", workspace)
local newmesh = Instance.new("SpecialMesh", part)
part.CFrame = mesh.CFrame
newmesh.MeshType = Enum.MeshType.FileMesh
newmesh.Scale = mesh.Size
newmesh.TextureId = mesh.TextureID
newmesh.MeshId = mesh.MeshId