of     1   

Klyox
#178655104Friday, November 27, 2015 3:59 AM GMT

title
Klyox
#178655393Friday, November 27, 2015 4:04 AM GMT

help
Scottifly
#178665669Friday, November 27, 2015 8:50 AM GMT

Parts you are inserting with a script, or with the Insert Part/Insert Object menu in Studio? The ones in the menu are set. With a script you can set the Properties (check the ROBLOX wiki). I usually have a few Parts in the Workspace (like a Wedge and Part) that I have set as Anchored and Smooth sides that I can copy instead of getting something from a menu then having to change those every time.
chimmihc
#178668153Friday, November 27, 2015 12:20 PM GMT

local function Create(class,props) return function() local obj = Instance.new(class) for i,v in next, props do obj[i] = v end return obj end end local NewPart = Create("Part",{ Parent = workspace, BrickColor = BrickColor.new("Really red"), Transparency = 0.5, Name = "Red part", TopSurface = Enum.SurfaceType.Smooth, BottomSurface = Enum.SurfaceType.Smooth, CFrame = CFrame.new(0,100,100), Size = Vector3.new(1,1,1), Anchored = false, CanCollide = true, }) NewPart() wait() NewPart() wait() NewPart()

    of     1