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

How can I group an set of welded parts?

Asked by 5 years ago

Hey, I couldn't find a proper way on how to do this, I would like to know how to Group a set of welded parts so I can edit them all at once properly?

0
Your question is incredibly unclear so I just answered what I think you meant mc3334 649 — 5y

1 answer

Log in to vote
1
Answered by
mc3334 649 Moderation Voter
5 years ago

WeldedPartTable = {} --Insert all parts here

m = Instance.new("Model") m.Parent = workspace m.Name = "WeldParent"

for _,v in pairs(WeldedPartTable) do v.Parent = m end

Ad

Answer this question