How to extrude multiple parts in a unique direction?

Hey i’m having an issue, i want to make make this circular platform larger but if i try to scale it, it goes out of the tower

Is there like a extrude function or some plugin that can help me?

(so i don’t need to scale them 1 by 1)

Try running something like the following in the command bar:
for i, part in ipairs(partsFolder:GetChildren()) do part.Size += Vector3.new(0, size, 0) end
That’s assuming you’re scaling it on the Y axis, adjust it as needed.

1 Like

Ok i tried that but unfortunately doesn’t work

I wasn’t clear, sorry. Did you replace the Vector3.new(0, size, 0) with your own size?
E.g. to extrude it 10 studs on the Y axis, replace it with Vector3.new(0, 10, 0)

2 Likes

Wait that actually worked, thanks!

You can use SBS (studio build suite) which has a Resize (which extrudes) and Scale feature (just like normal roblox with multiple parts)

1 Like

WOW this plugin is very useful, thanks!

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