#why cant i see the edtitable mesh only this weird cube all the time
local AssetService = game:GetService("AssetService")
local Existing = workspace:WaitForChild("Sphere")
local myEditableMesh = AssetService:CreateEditableMeshAsync(Existing.MeshContent,{["FixedSize"]= true})
local MeshPart :MeshPart= AssetService:CreateMeshPartAsync(Content.fromObject(myEditableMesh))
MeshPart.Parent = workspace
MeshPart.Anchored = true
MeshPart.CFrame = CFrame.new(5,5,5)