Size multiple parts as one using a script

So i have a square of parts, I want to size them all as one without leaving gaps between them, How would i go about that?

select all the parts and make it a model (Ctrl + G)

here’s script

local model = workspace.ModelName -- your model

script.Parent.ClickDetector.MouseClick:Connect(function() -- I used clickdetector for example, u can use whatever u want
	model:ScaleTo(.5) -- type the scale u want
end)
1 Like

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