How would I approach making a GUI for this?

I would like to make a gui in which the grills are confined into the grey box, and I would be able to use navigation tools to move left and right to access grills that are located beyond the grey box. How would I accomplish this?

1 Like

You can add a Scrolling Frame to the grey box, and set the ScrollingDirection property to horizontal (X), Also make sure ClipsDescendants is turned on so that the grills don’t go out of the grey box. Then add a UIListLayout with Padding to evenly space each grill and organize them neatly.

Next, for the navigation tools, make two image buttons, one for the left and one for the right, when they are pressed, tween the ScrollingFrame CanvasPosition by extra offsets respectively.

2 Likes

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