How To Change The Size Of A Model

How do I change the size of a model? (WoodenChest is a model)

WoodenChestStudio.WoodenChest.Size = WoodenChestStudio.WoodenChest.Size + Vector3.new(0.1,0.1,0.1)

5 Likes

Maybe loop the descendants of it and change its size

for _,v in pairs(path.to.model:GetDescendants) do
if v:IsA("BasePart") then
v.Size = Vector3.new(v.Size.X + 0.1,v.Size.Y + 0.1,v.Size.Z + 0.1)
end
end

Edit: Also I recommend using the search bar. Most of the posts you make have already been answered!

4 Likes

Crazyman32 made a script that could work:

2 Likes

Yep. Like I said, maybe use the search bar before creating a topic.

2 Likes

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