Remove Inventory GUI

Hi there! :wave:

I am trying to remove player Inventory GUI

I want to remove it so player cant unequip tool, what i will put inside his character :raised_hands:

Yeah thats pretty much all i tried to find it but everything i found is: “How to make custom tool gui”

1 Like

use the SetCoreGuiEnabled function :fire:

local CoreGui = game:GetService("StarterGui") 

CoreGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false) -- remove's the backpack gui, cause it's a part of the CoreGUI pack(roblox menu, chat, leaderstat etc...)
1 Like

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