Creating a part with script without the stud surface texture?

I didn’t find anything useful only posts saying that you couldn’t chnage the surface texture of parts with scripts.
Is there a way to create a part using scripts that doesn’t have studs as a surface texture?
Any help is greatly appreciated.

1 Like

Actually I just saw that i could do part.SurfaceTop = Enum.SurfaceType.SmoothNoOutlines and it gives me the same effect but still is there a way to create one without a surface at all?

1 Like

it has no studs by default? but if you want to switch the surface of a part to smooth do this

part.BackSurface = Enum.SurfaceType.SmoothNoOutlines
part.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
part.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
part.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
part.RightSurface = Enum.SurfaceType.SmoothNoOutlines
part.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1 Like

I created a part using script and apparently it did have stud by default.

1 Like

it may be a plugin your using, im not too sure about building in studio but thats the best i can help you

2 Likes

An easier way is to set the Part’s Material to SmoothPlastic. It will have a higher reflection, tho

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.