Hey, I’ve been having an issue with F3X Btools in my friends game, where all of the drop down menu’s will not work, I was wondering if anyone possibly knew a fix, or as to why this is happening and if there’s any way I could recommend they do to fix it without completely remaking it. Any advice is apreciated!
I am the creator of a future Building Tools project, and also experienced this issue. Hopefully, I managed to get it fixed.
The problem is actually caused by a method used by F3X to definy the size of the dropdown that broke with Roblox updates. To repair the issue, you need to:
Open the UI folder and open the Dropdown menu.
In the :render() function, you’ll find a Layout element at the very end. Replace this element with:
Instead of using the buggy method that gives this as a result, the new function will do as we know which size the UI will be.
Otherwisely, if your dropdowns elements are smaller, that means your MaxRows option is bigger than the integrity of your options. For now, you must change the MaxRows option to the number of options when experiencing this.