I was wondering if you could make it so a tool can't unequip.
If you know whether it can or not, and you know how to do it, please answer. Thanks!
Yes, the EquipTool
() method. This method is a function of Humanoid.
1 | player.Humanoid:EquipTool(tool) |
Force the player's humanoid to equip the tool every time they try to unequip it with EquipTool.
1 | tool = script.Parent |
2 |
3 | tool.Unequipped:connect( function () |
4 | local player = game.Players.LocalPlayer |
5 | local character = player.Character |
6 | local humanoid = character:WaitForChild( "Humanoid" ) |
7 |
8 | humanoid:EquipTool(tool) |
9 | ) |
01 | wait( 0.001 ) |
02 | EnableBackpackGui = false --Change it to true if you want to keep backpack icon |
03 | Weapon = script.Parent.Name --Place it in a tool |
04 | local player = game:GetService( "Players" ).LocalPlayer --Use a local script |
05 | local mouse = player:GetMouse(); --Get mosue |
06 | local char = player.Character --Character |
07 | local tool = player.Backpack:FindFirstChild( "" ..Weapon.. "" ) --Find tool |
08 | db = 1 |
09 | while wait() do |
10 | if char then |
11 | game.StarterGui:SetCoreGuiEnabled( 2 ,EnableBackpackGui) --Check if Icon is enabled. |
12 | for i,v in ipairs (char:GetChildren()) do |
13 | if v.className ~ = "" ..Weapon.. "" then |
14 | wait() |
15 | if db = = 1 then |