Hiya- In a ScrollingFrame, there is a UIListLayout, the multiple objects in the ScrollingFrame will get a new child added to them depending on when a player joins the game.
The problem I’m experiencing is that, once the new child gets added, the next parent in the UIListLayout does not make space for the child, I need it to automatically make space whenever a child gets added to any object in the list.
If that sounded abit complicated here’s a visual representation that I quickly made:
So based on your sketch, I understand that you would like the ListLayout to take in account the full bonding box of previous elements, not just the top level element’s box. This is not possible because how of ListLayout works, but you can walk around the problem. First I’m not sure if it is intended that your Child element overflows from its parent, it’s possible to scale the parent with the children (could use AutomaticSize, like aforesaid). Otherwise, if you expect the Parent to be transparent beyond its actual dimensions, just wrap it into a transparent frame that you will scale according to the full bonding box of the thing, including children.