Let’s say I have a GUI with an UIListLayout, and in the same GUI there are 3 frames with 2 frames children each (in the picture there’s only one frame child, but there are two):
The padding for the UIListLayout is 0.315 (scale). I want to make the UIListLayout affect a child, but not the other. I want the unaffected children to meet in the middle:
But as you can see in the picture, they go above eachother. I have tried to reposition each Y scale position by 0.315*LayoutOrder, but they still don’t meet at the middle:
I know, make a new frame inside the one which has the listlayout, and set its size to 1, 0, 1, 0, and put the UIListLayout in it along with all the elements you want to be affected by it. Then, on the main frame remove the listlayout and you can move those elements freely.