How would I determine if a player is wearing wings on their avatar as an accessory?
simple all you have to do is see if the wings aren’t nil
for example:
trying to see if a part isn’t nil in Workspace,
if workspace.Part ~= nil then
--more code here
Not possible. You can detect if there is something on their back though by iterating through the accessories they’re wearing and looking for BodyBackAttachment in the handle.
I assume you are talking about ROBLOX accessories, and the only way I think you could do this is either checking all the wings in the catalog and adding the name of the accessory to a blacklist, or just removing anything that is attached to the player’s back, but this could remove backpacks and other back accessories as well.
are there any specific wings you want to get rid of or is it full on any wings, because then if it is all wings, you might as well get rid of all backpacks by doing what @ScriptingSupport said.