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

How to make tool non-unequippable?

Asked by 6 years ago

I made it so that players can't unequip the tool but when they press backspace, it still works.

1 answer

Log in to vote
0
Answered by 6 years ago

Use .ChildRemoved event

--Locate the Character here

char.ChildRemoved:connect(function(instance)
    if instance:IsA('Tool') then
        instance.Parent = char
    end
end)
Ad

Answer this question