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
script.Parent.Unequipped:Connect(function() wait() game.Players.LocalPlayer.Character.Humanoid:EquipTool(script.Parent) end)
If this worked, be sure to accept the answer! Good luck, and let me know if it does not work.