You can write your topic however you want, but you need to answer these questions:
What do you want to achieve? Keep it simple and clear!
I want to scale a model on one axis using a script
What is the issue? Include screenshots / videos if possible!
I haven’t been able to find any ways of doing this
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
I’ve looked through the devforum, but I seem to be the only one trying to do this specific thing lol
for _, part in ipairs(model:GetDescendants()) do
if part:IsA("BasePart") then
part.Size = part.Size * Vector3.new(1, scaleFactor, 1) --assuming y-axis is to be scaled
end
end --beginner's question