You can write your topic however you want, but you need to answer these questions:
-
What do you want to achieve? how to Resize a part from only one face?,i want the part to extend like this [o--------]
instead of like this [--------o--------] -
What is the issue? my script resize 2 face of part
tweenservice:Create(asu,TweenInfo.new(1),{Transparency = 0,Size = Vector3.new(20,20,0), },Enum.EasingStyle.Quint,Enum.EasingDirection.Out):Play()
wait(2)
for i = 1,60 do
wait()
if i <= 60 then
asu.Size += Vector3.new(0,0,1)
elseif i >= 60 then
print("done")
end
end
wait()
asu:Destroy()