Children inside frame don't tween

Im tweening a frame Udim2 size to 0 though all the children inside the frame dont also tween to 0 size is their a way to fix this?

You might want to loop through the frame’s children and tween them as well

Ex:

for i,v in ipairs(Frame:GetChildren()) do
  --Tween here
end

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