Is there any way to modify the transparency of the CoreGui backpack?

  1. What do you want to achieve? I want to change the transparency of the CoreGui backpack/toolbar so my custom inventory UI can replace the current one

  2. What solutions have you tried so far? I’ve looked through the playerscripts and CoreGuis but neither of them seem to have the backpack module, I’ve also tried overlaying but it doesn’t actually work

Things that won’t work:

  • Changing the topbar transparency (it gets rid of the backpack completely)
  • Overlaying the GUI (impossible)
2 Likes

I don’t think you can make that kind of change to it

1 Like

You could try to disable the Backpack UI itself

-- LocalScript in StarterGui
local StarterGui = game:GetService'StarterGui'
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack,false)
1 Like

I think he wants to change transparency not disable

1 Like

According to what he said, he wants it to “dissapear”

I want to change the transparency of the CoreGui backpack/toolbar so my custom inventory UI can replace the current one

If so he could have done that, if he managed to change topbar transparency I think he knows how to disable backpack, and it seems to me that he doesn’t want to get rid of her completely

1 Like

No. They are two different things, here:
https://developer.roblox.com/en-us/api-reference/function/PlayerGui/SetTopbarTransparency

This is impossible to do directly. Your best bet is creating a ‘fake topbar’ with your own custom-icons. I’ve made this a feature request as many aspects of the topbar are currently very limiting:

2 Likes