How would i go about Converting a Meshpart to a Part with SpecialMesh

  1. What do you want to achieve?
    I want to convert MeshParts into parts with meshes.

  2. 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.

  3. 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
1 Like

You cannot convert it without uploading mesh to Roblox. If you could it probably cause a lot of trouble with the safety

1 Like