Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
2

Can you make a tool force equip?

Asked by 9 years ago

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!

3 answers

Log in to vote
0
Answered by
rexbit 707 Moderation Voter
9 years ago

Yes, the EquipTool() method. This method is a function of Humanoid.

1player.Humanoid:EquipTool(tool)
Ad
Log in to vote
0
Answered by
XAXA 1569 Moderation Voter
9 years ago

Force the player's humanoid to equip the tool every time they try to unequip it with EquipTool.

1tool = script.Parent
2 
3tool.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)
Log in to vote
0
Answered by 5 years ago
Edited 5 years ago
01wait(0.001)
02EnableBackpackGui = false  --Change it to true if you want to keep backpack icon
03Weapon = script.Parent.Name --Place it in a tool
04local player = game:GetService("Players").LocalPlayer --Use a local script
05local mouse = player:GetMouse(); --Get mosue
06local char = player.Character --Character
07local tool = player.Backpack:FindFirstChild(""..Weapon.."") --Find tool
08db=1
09while wait() do
10if char then
11game.StarterGui:SetCoreGuiEnabled(2,EnableBackpackGui) --Check if Icon is enabled.
12for i,v in ipairs(char:GetChildren()) do
13if v.className ~= ""..Weapon.."" then
14wait()
15if db == 1 then
View all 25 lines...

Answer this question