How to color specific EditableMesh vertices' using the updated API?

How would I go about coloring specific vertices’ using the new EditableMesh API?
Previously it wasimage
But this is now deprecated. What is the new alternative?

u have to get the face that vertex is a part of somehow and set the vertex colors of that face

local colors= {
	EditableMesh:AddColor(color3, 1),
	EditableMesh:AddColor(color3, 1),
	EditableMesh:AddColor(color3, 1)
}
EditableMesh:SetFaceColors(faceId, colors)