Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Does Anyone Know The Core For A Players Backpack And Hotbar? [closed]

Asked by 3 years ago
Edited 3 years ago

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.

0
Backpack zadobyte 692 — 3y
0
sorry i only know the mantle Warphi 51 — 3y
0
yeah i only know the crust. sorry bout that Alphexus 498 — 3y
0
Sorry chief, let me know if you need the gui atmosphere. LeedleLeeRocket 1257 — 3y

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?

1 answer

Log in to vote
0
Answered by 3 years ago

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
Ad