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

Ben cooking so hard that gordon ramsay is jealous of him

1 Like

I’m having a problem with the menu where it’s not properly positioned, and they open both at the same time.
Screenshot 2024-07-29 174019

2 Likes

if you have a button that can be selected and deselected if you have it unselected and click a diffrent button (i think its only 1 click buttons) it also selects the buttons that can be selected and deselected
(tested this in your playground too)


possible that this will be fixed?
(i added a audio so its more clear to show that its an issue)

You just have to disable autoDeselect for the mute icon:

icon:autoDeselect(false)

1 Like

thanks it worked
im not sure why this was not used within the playground because it looks like a bug when its on by default

1 Like

image

For some reason, all the icons are getting duplicated. Here’s my code:

local module = require(game.ReplicatedStorage.Modules.Icon)

local function createButtons()
	local SettingsIcon = module.new()
	SettingsIcon:setLabel("")
	SettingsIcon:setLabel("Settings", "Viewing")
	SettingsIcon:setImage(11293977610, "Deselected")
	SettingsIcon:setImage(18724105193, "Selected")
	SettingsIcon:setCaption("Open Settings")

	local ProfileIcon = module.new()
	ProfileIcon:setLabel("")
	ProfileIcon:setLabel("Profile", "Viewing")
	ProfileIcon:setImage(11295273292, "Deselected")
	ProfileIcon:setImage(18725137702, "Selected")
	ProfileIcon:setCaption("Open Profile")
end

createButtons()

I have just figured it out!! for everyone that has this issue, put the local script (responsible for creating the icons) inside replicated storage or inside the workspace. for some reason it doesn’t work in the starterGUI or starterPlayerGui

I have just run into an issue where when I add an incon into existing menu using “:joinMenu()” the size of the menu does not change, resulting in user having to scroll for the other icons. That wouldn’t be an issue if there wasn’t space for the menu to resize but there is.
image
image
The scrollbar itself is also visible (upon opening) even when the content is fully visible.
image
image
I haven’t tested this on the new UI.

Edit: found another issue with captions which are aligned to the top and not bottom of the “Icons container” (may I call it like this?).
image
(Works fine on new UI.)

You can do it with :setOrder(number)

1 Like

its a great module and all but anyone knows how to get rid of this?


this part literally breaks if i dont disable Better Chat which is obviously something I dont want to do :skull:

Mostly because better chat already haves a top bar module, any ideas?

If anyone needs a invite friends script, here!

local Icon = require(game:GetService("ReplicatedStorage").Icon)
local SocialService = game:GetService("SocialService")
local Players = game:GetService("Players")
local player = Players.LocalPlayer

local inviteOptions = Instance.new("ExperienceInviteOptions")
inviteOptions.InviteMessageId = "YOURNOTIFICATIONSTRINGHERE"

local function canSendGameInvite(sendingPlayer)
	local success, canSend = pcall(function()
		return SocialService:CanSendGameInviteAsync(sendingPlayer)
	end)
	return success and canSend
end

local Invite = Icon.new()
	:setImage(16485180075)
	:setLabel("Invite")
	:oneClick()
	:bindEvent("selected", function()
		local canInvite = canSendGameInvite(player)
		if canInvite then
		SocialService:PromptGameInvite(player)
		script.Click:Play()
	end
	end)

5 Likes

You could use :setOrder() or just create the menu before the music

For some reason I can’t seem to get my dropdown to work. As soon as I add :setIcon() to any of the menu items, it stops working. Same thing if I try to assign a function to it when clicked.

Here is the current script which works but the dropdown buttons don’t have icons or functions:

Icon.new()
:setLabel(“Menu”)
:modifyTheme({“Dropdown”, “MaxIcons”, 2})
:modifyChildTheme({“Widget”, “MinimumWidth”, 100})
:setDropdown({
Icon.new()
:setLabel(“Settings”)
,
Icon.new()
:setLabel(“Gifts”)
,
})

As soon as I add :setIcon() after any of the :setLabel() it just breaks and creates a completely seperate icon.

Can you fix the wally release? When running wally-package-types --sourcemap sourcemap.json Packages/ it errors error: Could not convert require expression to file path: No .lua/.luau file found for linked node.

I just wanted to say that I love this and have used it not just for menus, but static displays too. Works very nice as a clean interface on mobile:

9 Likes

How can I make a developer product purchase print to my dropdown buttons?

Bug?

So this is the only script for top bar v3.0.2, only one icon.new() and it duplicates?

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


Icon.new()
	:setName("hi")
		
local function MilitaryToStandard(hour)
	return if hour > 12 then hour - 12 else hour, if hour > 12 then true else false
end

local function ConvertTo2Digit(digit)
	return if #tostring(digit) < 2 then 0 .. digit else digit
end
local res

local icon = Icon.getIcon("hi")
while true do
local date = os.date("!*t", os.time() + (3600 * -4))
local min = ConvertTo2Digit(date.min)
local hour, isPM = MilitaryToStandard(date.hour)
local sec = ConvertTo2Digit(date.sec)
local result = "EST TIME ".. hour .. ":" .. min ..":" .. sec
 res = result
	icon:setLabel(result)
	icon:align("Right")
	icon:lock()
wait(.000001)
end

I really need this fixed, feel free to message me or reply if you have a fix or question!

I can’t see why it would. But maybe (until it’s fixed) assign a variable at the point of creation (although I’ve used RunService here instead of a loop, because task.wait is better than wait, but Runservice will go at the fastest possible refresh - rather than defining such a small wait time).

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

local icon = Icon.new()
    :align("Right")
    :lock()

local res
	
local function MilitaryToStandard(hour)
    return if hour > 12 then hour - 12 else hour, if hour > 12 then true else false
end

local function ConvertTo2Digit(digit)
    return if #tostring(digit) < 2 then 0 .. digit else digit
end

RunService.Heartbeat:Connect(function()
    local date = os.date("!*t", os.time() + (3600 * -4))
    local min = ConvertTo2Digit(date.min)
    local hour, isPM = MilitaryToStandard(date.hour)
    local sec = ConvertTo2Digit(date.sec)
    local result = "EST TIME ".. hour .. ":" .. min ..":" .. sec
    res = result
    icon:setLabel(:setLabel(toHMS(DateTime.now().UnixTimestamp-events.TimeStamp.Value), "deselected") )
end)

I’ve tried this and it works.

However, I would suggest you use DateTime. For example this code (which is much simpler) gives the user the time in their local time:

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

local icon = Icon.new()
	:align("Right")
	:lock()

RunService.Heartbeat:Connect(function()
	local dt = DateTime.now()
	icon:setLabel(dt:FormatLocalTime("hh:mm:ss", "en-us"), "deselected") 
end)

I just need to be EST time which I got. The code is correct. I just need to know why it shows duel.