Console code to make every part in your game smooth. (Every part in Workspace)
for i,v in game.Workspace:GetDescendants() do
if v:IsA("Part") then
v.BackSurface = ("Smooth")
v.BackSurface = ("Smooth")
v.BottomSurface = ("Smooth")
v.FrontSurface = ("Smooth")
v.LeftSurface = ("Smooth")
v.RightSurface = ("Smooth")
v.TopSurface = ("Smooth")
end
end
I left it like that so people can more easily edit it. I decided to post it because if your game has studded parts in it and you don’t want to manually change them all you can use this.