I'm Making A Game With A Custom Hotbar and Backpack. I want the regular roblox hotbar and backpack Hidden.
Does Anyone Know The Core For it?
By The Way I'm Using game.StarterGui:SetCore()
for it.
You cannot disable the hotbar since the hotbar is a part of the player's Backpack.
But, if the Backpack is disabled, the hotbar is too.
local StarterGui = game:GetService("StarterGui") game.Players.PlayerAdded:Connect(function() StarterGui:SetCore("Backpack", false) end
Closed as Not Constructive by JesseSong
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?