How to resize model using script

title made it clear so,
I want to make a script where, after
wait(1)

then continued with script.parent which is the model
then after wait it
change the size of a model, script.parent.size = 3

I’ve done it but it doesn’t work,
does anyone know where I went wrong?

I tried to use Model.Scale but for some reason that doesnt work so u gotta use a workaround

local model = workspace.Model

for _, parts in model:GetDescendants() do
	if parts:IsA("BasePart") then
		parts.Size = Vector3.new(5,5,5)
	end
end

Or u use

local model = workspace.Model
model:ScaleTo(4)
3 Likes

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