Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do i make Instance.new spawn a MeshPart instead of a brick?

Asked by 6 years ago

Hello, i want to know how can i make Instance.new make a MeshPart (A mesh in a brick) instead of a regular part.

Thanks

1 answer

Log in to vote
0
Answered by 6 years ago

All you need to do is use Instance.new() like you normally would, but create a MeshPart instead of a Part.

local mesh = Instance.new("MeshPart")
mesh.Parent = workspace
0
Thanks! Pizza64X 8 — 6y
Ad

Answer this question