Editable mesh disappear when camera angle changes

My Editable mesh dissapear when camera angle changes

I have tried disabled Streaming but it’s not work

i make mesh like this

    local group = Instance.new('Model', workspace)
    group.Name = 'Wave'
    
    local meshPart = AssetService:CreateMeshPartAsync(Content.fromObject(editableMesh))
    meshPart.Anchored = true
    meshPart.Position = Vector3.new(0, 20, 0)
    meshPart.Parent = group
    meshPart.Material = Enum.Material.Metal
    meshPart.Color = Color3.fromRGB(0, 32, 96)
    meshPart.Transparency = 0.15
    
    group:ScaleTo(200)
    group:PivotTo(CFrame.new(0, 20, 0))

try use plugin or roblox water instead of mesh

A fix for this will be enabled soon with the current Studio release (v653)

Thanks for the report!

2 Likes