Hello,
I have a problem with my accessory removing script.
It does not detect accessories (or at least the “DOGE” one)
I tried making it check for the handle and check if it is not a tool. Didn’t work.
The script is a script in SSS (ServerScriptService). Its for giving the player custom clothes, tools, accessories etc. if they are on a team.
for i, child in pairs(char:GetChildren()) do
if child:IsA("Accessory") then
child:Destroy()
end
end
Thanks if you can help.