How to add a backpack button on the top left?

bacpac
Does anyone know how to add this backpack button next to the roblox logo?

I understand top bar plus exists but I think the backpack button is a built-in feature that I just need to enable as I’ve noticed many games use it.

Any help would be appreciated, thanks.

All you need to do is create a new icon inside of top bar plus
It’s pretty simple and you can just create something like this:

Icon.new()
	:setImage(1234567) -- use any image assetid that you want
	:modifyTheme{"IconImageScale", "Value", 0.65} -- update the size if you want
	:bindEvent("selected", TopbarFunctions.ShowInventory) -- you can set it to any function
	:oneClick()
2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.