I'm working on a game that requires a tool that is always equipped and cannot be unequipped. I don't really know how to make a script that can do that specifically. Any tips?
With SetCoreGuiEnabled
you can disable the backpack interface.
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)
You can then force people to equip a Tool
with EquipTool
and you might want to set CanBeDropped
to false
, to prevent people from pressing backspace and dropping the tool. You can also check out RequiresHandle
, but perhaps it's not relevant to your specific question.