How would I make a model scale one way on the 'Y' axis?

Hello Developers,

I am trying to figure out how (through a script) I would scale a model one (Similar to F3X) way on the ‘Y’ axis because when you change the ‘Y’ axis’s scale it scales on both sides.

Thanks,
Lucid

To resize part in one specific direction, you would want to use Resize method of basepart.

Example:

local Part = script.Parent

Part:Resize(Enum.NormalId.Top,100)

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