#Lengthening by one side

1 messages · Page 1 of 1 (latest)

stiff linden
#

Hello. Is it possible to lengthen a part along only one side, like only upwards. If we change the size, it lenghtens along both upwards and downwards. But I want it only upwards.

blissful haven
#

your probably selecting two or more parts

stiff linden
#

I meant via script, i forgot to add

blissful haven
#

show me how u do this

stiff linden
#

Like

script.Parent.Size += CFrame.new(4, 0, 0)
#

For example it's touching to the base, so i want the 4 size to be lengthened on the up side, not the base side

keen ore
#

local Part = workspace.Part;
while (task.wait(1)) do

Part.Size += Vector3.new(0, 4, 0);
Part.Position += Vector3.new(0, 2, 0);

end;
like this does work to me