{CLOSED} How do I destroy all players gear

wow that works thanks…

This fixed the duplicating issue

This will actually be evaluated as

if (not v.Name) == "Handgun" then

which will always fail. You should use this for comparisons instead:

if v.Name ~= "Handgun" then
1 Like