How to Disable Avatars Accessory Query?

Hey, Is there a way to disable all players Avatar Items/Accessory Query?
image
image

You can use the humanoid:RemoveAccessories()
Don’t know if this is what you’re looking though.

Nvm I found it. local d = hit.Parent:GetChildren()
for i=1, #d do
if (d[i].className == “Accessory”) then
d[i].Handle.CanQuery = false
end
end
end