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

How would I remove the Equipping GUI?

Asked by
6zk8 95
4 years ago

By "Equipping GUI", I mean the tools that it shows you have at the bottom of the screen, which you can equip.

1 answer

Log in to vote
0
Answered by
Norbunny 555 Moderation Voter
4 years ago
Edited 4 years ago

I believe that you can't disable just the bar, you would have to disable the whole backpack GUI.

You can achieve this using the SetCoreGuiEnabled!

-- Write this in a local script
game:GetService("StarterGui"):SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)

You can find the documentation on CoreGuiEnabled here!

You are still able to equip tools using your custom script, by parenting the tool to the player's character!

1
Thank you! 6zk8 95 — 4y
0
Happy to help! Norbunny 555 — 4y
0
Where would you put the script? 6zk8 95 — 4y
1
Somewhere it can acces the client. Like: StarterGui for example dekkeda 30 — 4y
View all comments (3 more)
0
Oh 6zk8 95 — 4y
0
I thought it would go in ServerScriptService as the whole server needs access to it 6zk8 95 — 4y
1
dont put it in serverscriptservice. it's a client so nobody else needs it. speedyfox66 237 — 4y
Ad

Answer this question