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)
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)
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!
Crazyman32 made a script that could work:
Yep. Like I said, maybe use the search bar before creating a topic.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.