Is it possible to disable the ability to equip certain tools? Or even disable the ability to send it to the toolbar?
If you don’t want it to be in the toolbar then don’t put it in the players backpack
2 Likes
You should go with a better and more ideal preventative measure like stopping the player from ever receiving the tool like domboss37 said but here is an example of a reactive measure that removes a BlackListed tool whenever a player is given one:
local BannedTools = {"ToolName1", "ToolName2"}
game:GetService("Players").PlayerAdded:Connect(function(Plr)
Plr:WaitForChild("Backpack").ChildAdded:Connect(function(NewTool)
if NewTool:IsA("Tool") then
if table.find(BannedTools,NewTool.Name) then
NewTool:Destroy()
end
end
end)
end)
1 Like