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

I need help with Instance.new, Turning an object to smooth no studs? [closed]

Asked by 7 years ago

So im making a game involving a lot of script placed parts and so forth i've experimented with the instance command a few times and I think i've cracked except when I place a part via that command how do I change the object to smooth (No studs)?

Closed as Not Constructive by hiimgoodpack and PyccknnXakep

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
-1
Answered by 7 years ago
part = Instance.New("Part")
part.Parent = workspace
part.Surface.BottomSurface = "Smooth"
part.Surface.TopSurface = "Smooth"
--ect
0
Explain your answer in English. Don't just post code; this doesn't help the poster or the community understand why the code does what it does. hiimgoodpack 2009 — 7y
Ad