of     1   

sjr04
#228172257Tuesday, November 28, 2017 1:33 AM GMT

what would be the name of a face accessory? i want to do something which i already know how to do, but basically i am asking is if part:IsA(“”) then what would go between the “”? i already have part variable set up, not worried there
TaaRt
#228172395Tuesday, November 28, 2017 1:35 AM GMT

Decal?
sjr04
#228172524Tuesday, November 28, 2017 1:37 AM GMT

@taa no. i mean like what would a face accessory be like if i wanted to remove people wearing a face accessory (e.g. shades) i would do part:Destroy() but i want to know what the name of a face accessories in general are called
nofascistsaloudxD
#228172583Tuesday, November 28, 2017 1:38 AM GMT

http://wiki.roblox.com/index.php?title=API:Class/Accoutrement An accountrement has two inherited classes, Hat and Accessory.. As for the face decal: http://wiki.roblox.com/index.php?title=API:Class/FaceInstance I believe "FaceInstance" is what you're looking for...
Soybeen
#228176159Tuesday, November 28, 2017 2:47 AM GMT

@nofascist @taart There are types of Accoutrements that are worn on the Face, and some on the Shoulders, or Back, or Waist, etc Those are all uniquely classified in the Catalog, but to determine what type of accessory you are dealing with in a place is a little less straightforward. Still, you can get the type easily by looking into the Accoutrement for the name of its Attachment. Hats are "HatAttachment" while Neck items are "NeckAttachment" and so on. It would look something like local attach = Accessory:FindFirstChildWhichIsA("Attachment") print(attach.Name) end
TaaRt
#228178349Tuesday, November 28, 2017 3:35 AM GMT

Ha, this must've been the oldest I've felt on ROBLOX. Face accessories are a thing of course, I sort of auto-assumed it was face

    of     1