How do we hide the UI when we have a tool?

How to hide attached tool ui?
Ekran görüntüsü 2023-09-05 232253

If you are talking about the roblox UI for tools on the bottom, you can do

(local script)

game:GetService("StarterGui")SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false) 

Keep in mind that you will have to manually equip and unequip a players tool with user input service as they will not be able to interact with a tool.

2 Likes

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