The title is self explanitory, I’m trying to make it so that a player always has their tool in hand, and cannot unequip it.
You can set the tool’s parent to the player’s character then disable the player’s Backpack
by using SetCoreGuiEnabled. Since you can only do that from a Local Script, create a Local Script in any place that it can execute from (I usually use StarterPack
), then put this code:
local plr = game.Players.LocalPlayer
game.StarterGui:SetCoreGuiEnabled("Backpack",false)
If you have any issues with the code above/the instructions, let me know!
1 Like
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.