Important update: we’ve just discovered and patched a critical bug with the overflow that was causing icons to be randomly hidden. We highly recommend all users update to the latest v2.3.1 release which can be done by re-adding the TopbarPlus model or downloading the latest release:
Can you provide details on how you reproduce this? If you could share an uncopylocked stripped down-place of just the isolated bugged icons even better.
I’m also getting this bug, I’ve only started playing around with it recently and have already ran into this bug.
What i have done:
Added a wait before the icon function – Same Bug
Reimported the script – Same Bug
As Overfearful says, going into freecam and out again fixes it.
Here is a portion of the code,
local Fly
local Flyimg = "https://www.roblox.com/library/3170108676/letter-f"
local GS
local GSimg = "https://www.roblox.com/library/419504645/Letter-G"
local S
local Simg = "https://www.roblox.com/library/195452703/Letter-S"
function MakeIcons()
-- Quick shortcuts to certain things
-- Fly
Fly = icon.new()
Fly:setImage(Flyimg)
Fly:setTip("Lets you fly!")
Fly:setOrder(2)
GS = icon.new()
GS:setImage(GSimg)
GS:setTip("Lets you skip anything that needs a gamepass")
GS:setOrder(3)
--Spawn
S = icon.new()
S:setImage(Simg)
S:setTip("Teleports you to spawn")
S:setOrder(4)
end
MakeIcons()
And another intreasting bug is that the images aren’t showing up on the buttons, Even when the buttons overlap any idea on how to fix this (and the main bug)?
What version of TopbarPlus are you using? Can you update to the latest version (i.e. re-add the model back into your game) and see what happens. This sounds very familiar to a bug we patched in a previous version.
Edit: I’ve just tested your code and there does appear to be a bug. Ill look into this now
Just imported into the game with the code and it works. Thanks!
I am still getting the promblem with the images though, Do you know anyway to fix that?
This is an amazing module with a useful api document to learn. This module lets user have shortcuts to different settings or just make the screen cleaner altogether. I would definitly recommend this to someone else if they needed something like this.