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

How to change the surfaces of a part?

Asked by
Mystdar 352 Moderation Voter
9 years ago

How would I change all the surfaces of a part to SmoothNoOutlines, (which's Enum is 10). I know you can change material like this:

Part.Material = Enum.Material.Plastic

Thanks

2 answers

Log in to vote
1
Answered by 9 years ago

Most likely

Part.Surface = Enum.Surface.SmoothNoOutlines

I don't really know though. The other way would be the better and the method I know.

Part.TopSurface = "SmoothNoOutlines"
Part.BottomSurface = "SmoothNoOutlines"
0
Thanks Mystdar 352 — 9y
Ad
Log in to vote
1
Answered by 9 years ago

Another way to change surface inputs is select the part that you want then by the explorer tab click properties then open up Surface Inputs and there you go !

0
Thanks for the input, but I meant via script. Mystdar 352 — 9y

Answer this question