So when you equip a tool, at the bottom of the screen there is always an icon - how do I remove this? Couldn't find anything on the internet so maybe someone who has dealt with this before could help. Thanks!
Local script in StarterGui:
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack,false)
Example local script to equip tool:
local plr = game.Players.LocalPlayer local char = plr.Character local hum = char:WaitForChild("Humanoid") hum:EquipTool(plr.Backpack["Tool"])
For this example to work you must have a tool in StarterPack Named Tool. It doesn't have to be a local script. But LocalPlayer can only be used in local scripts.