game.StarterGui:SetCoreGuiEnabled("Backpack", false)
There is no error, it just doesn't remove it. When I join my game, it's still there. Help?
This needs to be in a local script in the StarterGui
local StarterGui = Game:GetService('StarterGui') StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)
Pulled straight from this wiki article: http://wiki.roblox.com/index.php?title=Disabling_parts_of_the_game_interface
For this to work, it needs to be run within a LocalScript, if it is in a normal script it will have no effect, this local script also then needs to be placed in the starterpack else it will not run due to not being in the player.
Other than that I'm not sure.