Thank you! It did work.
For the bind of left click to the dropdown, I actually went with something like this
local function forceDropdown()
if tutDropdown.isOpen then -- Rather than tutDropdown:IsOpen()
tutDropdown:hide()
else
tutDropdown:show()
end
end
The documentation mentions local bool = dropdown:isOpen()
as a way to get a bool of whether or not the dropdown is opened.
I’m not the best with module scripts so maybe this would be easily deducted by someone familiar with them, or maybe my use case isn’t the one listed in the documentation, but you might consider adding it…
https://1foreverhd.github.io/HDAdmin/projects/topbarplus/dropdown/