I was building my game and added some tools into your inventory.
I tested the game and noticed that I did not have an inventory.
I tried adding a script to enable your inventory, but it did not work. I also tried making a new game and added a tool, but it did not work. It would only show tools out of studio.
Can someone please help?
1 Like
It looks like you are playing the game in studio so how where you trying to show inventory.
I think it’s a plugin which is causing that, try to remove sketchy/unnecessary plugins or maybe a free model is causing that.
1 Like
Do you have a local script in StarterGui that prevents the backpack from showing up? If so, paste this script into StarterGui in a local script and it will be displaying it again:
local StarterGui = game:GetService(“StarterGui”)
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
1 Like
Thank you so much. It was a plugin.
1 Like