#Lengthening by one side
1 messages · Page 1 of 1 (latest)
your probably selecting two or more parts
I meant via script, i forgot to add
show me how u do this
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
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