Okay so basically I am making a game pass that gives you a gravity coil but every time I load in the game the tools never show up. Ive been looking around on youtube but I can’t seem to find any resources for my problem. Any help? Heres a picture of my game. Look at my player and in startergear and backpack![
1 Like
Are you using :SetCoreGuiEnabled()
anywhere in your code? Maybe would explain why backpack isn’t showing up.
StarterGui:SetCore("TopbarEnabled", false)
seems to be enabled, thus not allowing the Backpack gui to be shown.
Do
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, false) -- disables all gui
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true) -- re-enabled backpack gui
3 Likes