[v3!] TopbarPlus v3.0.0 | Construct intuitive topbar icons; customise them with themes, dropdowns, captions, labels and much more

How could I combine these two text labels into one icon?
image

EDIT:
I figured out I just had to use Rich Text to make it work;

fpsIcon:setLabel("<b>FPS: " .. tostring(fps).."</b> Ping: " .. math.modf(avgPing) .. " ms")

image

Works flawlessly.

4 Likes

anyone know if its possible to have an dropdown inside of an dropdown?

What is happening here?

image

local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Icon = require(ReplicatedStorage.SharedModules.Premade.Icon)


Icon.new()
	:setImage(2243841635)
	:setLabel("Leaderboard")
	:setCaption("Open Leaderboard")
	:bindToggleKey(Enum.KeyCode.Tab)
	:align("Right")
6 Likes
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Players = game:GetService("Players")
local localPlayer = game:GetService("Players").LocalPlayer
local playerGui = localPlayer.PlayerGui
local iconModule = ReplicatedStorage:FindFirstChild("Icon", true)
local Icon = require(iconModule)
local Sound = game:GetService("SoundService")

local playersettings = playerGui.PlayerSettings

local showtxt = playersettings.ShowText
local muteMusic = playersettings.MuteM

Icon.new()
	:setName("TxtIcon")
	:align("Left")
	:setImage(15674410240)
	:setLabel("Hide", "Show")
	:setCaption("Settings for Info-Txts")
	:bindEvent("deselected", function(icon)
		icon:setLabel("Hide", "Show")
		showtxt.Value = false
	end)
	:bindEvent("selected", function(icon)
		icon:setLabel("Show", "Hide")
		showtxt.Value = true
end)

Icon.new()
	:setName("MuteIcon")
	:align("Left")
	:setImage(7248002480, "deselected")
	:setImage(7248002631, "selected")
	:setLabel("Mute", "Viewing")
	:setCaption("Settings for Radio")
	:bindEvent("deselected", function(icon)
		icon:setLabel("Mute", "Viewing")
		Sound.MusicSounds.Volume = 1
		muteMusic.Value = false
	end)
	:bindEvent("selected", function(icon)
		icon:setLabel("Unmute", "Viewing")
		Sound.MusicSounds.Volume = 0
		muteMusic.Value = true
		
end)

When even i try to Mute music and hide the hide the Text the mute will get automaticly enabled agian even thoe i disabled it…

Why dose this happen?
robloxapp-20241118-1625557.wmv (575.4 KB)

Why must a person download a video to watch it ?
Can’t you just drop it in the forum like others do ?

2 Likes

kinda embarrassing …Dont know how… :sweat_smile: :sweat_smile: :sweat_smile: :sweat_smile:

It’s ok… we all learning still :smiley: … but on PC… just drag & drop it … while creating a post… (or search on hard drive)
Many are suspect… and won’t download bcoz of bugs/viruses :wink:

1 Like

image

When i try it still is going to be a download for some reason…

robloxapp-20241118-1625557.wmv (575.4 KB)

1 Like

How do I use the selected event for buttons in a dropdown menu? I tried this myself, and the console is printing “attempted to index nil with ‘selected’”.

Code
local unitlist = require(game:GetService("ReplicatedStorage").Unitstatsclient)
local event = game.ReplicatedStorage.spawn

local iconlist1 = nil
local iconlist2 = nil
local iconlist3 = nil

local Icon = require(game:GetService("ReplicatedStorage").Icon)
local unitdropdown = Icon.new()
	:align("Right")
	:setLabel("Units")
	:modifyTheme({"Dropdown", "MaxIcons", 3})
	:modifyChildTheme({"Widget", "MinimumWidth", 158})
	:setDropdown({
		iconlist1 = Icon.new()
		:setLabel(unitlist.Units.Unit1.Name),
		
		iconlist2 = Icon.new()
		:setLabel(unitlist.Units.Unit2.Name),
		
		iconlist3 = Icon.new()
		:setLabel(unitlist.Units.Unit3.Name),
})

iconlist1.selected:Connect(function(fromSource)
	local tospawn = "Unit1"
	event:FireServer(tospawn)
end)

I think it’s because it’s a .wmv file. You would have to convert it to an mp4.

Try not to use Roblox’s recording tab, as it produces these. There are better ways.

2 Likes

Can we please get a fix for the wally installation :pray:

Been broken for over 2 months (and I imagine longer, since 3.0.2 came out)

icon:bindEvent(“selected”, function()
– code
end)

I don’t know what this is. If you are going to help someone, you need to explain, not just send a snippet of code.

They mean that you can do it like so:

iconlist1:bindEvent("selected", function()
	local tospawn = "Unit1"
	event:FireServer(tospawn)
end)

What you tried to do is in the documentation, not sure why you’re getting the error.

Now it says, “attempt to index nil with bindEvent”

Read the API then; Its pretty self-explanatory and should make sense just by reading it. ‘icon’ is the individual icon you are reffering to.

1 Like

I did read the API, that’s how I made my previous code, and yet it doesn’t work.

Hey, I was wondering if there currently is a built-in way to automatically sync the custom topbar icons generated by this module with the recently introduced PreferredTransparency property of GuiService?

I glanced over the documentation for TopbarPlus v3.0.2 and found no indication of this being a feature. As far as I’m aware, non-core scripts can also directly read from PreferredTransparency, so adding support for user-set transparencies isn’t too far fetched. I would really love to see this being implemented into the module in the near future, especially since the new topbar is fully rolled out at this point.

Edit: Using Icon.modifyBaseTheme, this functionality is actually pretty easy to implement:

local GuiService = game:GetService("GuiService")
local Icon = require(--icon module here--)

local function updateCustomIconTransparency()
	local preferredTransparency = GuiService.PreferredTransparency
	Icon.modifyBaseTheme({"IconButton", "BackgroundTransparency", 0.3 * preferredTransparency, "Deselected"})
end

updateCustomIconTransparency()

GuiService:GetPropertyChangedSignal("PreferredTransparency"):Connect(updateCustomIconTransparency)

This code snipped makes sure the base theme gets updated at the start of the game and in case any changes to the setting are detected. I reckon this is about how other developers have approached this issue so far.

2 Likes

Show the code.

#removecharlimit

Is there a way to auto-force the old version, also I noticed that the :setLeft and :setRight doesn’t work? Thanks!