Hey, while making my game i did not like the look of the backpack UI that roblox provides by default, is there anyway i can hide / disable the UI without disabling the backpack itself as I don’t want to go through the trouble of a custom inventory system.
4 Likes
When you disable the backpack ui your not disabling the backpack, you can still place and equip tools. By disable I assume you mean the key binds. There is no way you can disable the backpack without having to write your own custom key binding system, which is not that difficult to create.
2 Likes
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)
the backpack still works, just the gui is off, hence the location in startergui.
8 Likes
Where would you put this script?
You can put this anywhere in a “LocalScript”
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.