How do I Force a player to Hold a tool, And cant be Unnequipped
First, you want to disable "Can Be Dropped" in the tool so the player can't drop it. Next, make a local script in the tool and use this code
1 | script.Parent.Unequipped:Connect( function () |
2 | wait() |
3 | game.Players.LocalPlayer.Character.Humanoid:EquipTool(script.Parent) |
4 | end ) |
If this worked, be sure to accept the answer! Good luck, and let me know if it does not work.