All attachment names for accessories?

Hello, I am wondering what all the names are for the attachments that Accessories use.

For example:
image

This is the name to attach stuff on ur right hand, so I am wondering what all the names are for all the areas. Any help?

2 Likes

You can start a test solo server (F5) and collect the names from there, whether you do it by hand or through an automated solution like printing out the names of the attachments and their ancestor. Here’s some code I whipped up for an automated solution, run it from your command bar in a local session.

local character = game:GetService("Players"):GetPlayers()[1].Character

for _, part in ipairs(character:GetChildren()) do
	if part:IsA("BasePart") then
		print(part.Name)
		for _, attachment in ipairs(part:GetChildren()) do
			if attachment:IsA("Attachment") then
				print("\t" .. attachment.Name)
			end
		end
	end
end

I can supply the attachment names in any case to make it easier. Just keep in mind the above code to know how it can be done. It’s best if you try to test some things out to reach an appropriate solution first and if that stumps you the forum can be a resource to bounce the question off of other developers for insight into how they might resolve the problem.

HumanoidRootPart
  	RootRigAttachment
LeftHand
  	LeftWristRigAttachment
  	LeftGripAttachment
LeftLowerArm
  	LeftElbowRigAttachment
  	LeftWristRigAttachment
LeftUpperArm
	LeftShoulderRigAttachment
	LeftElbowRigAttachment
	LeftShoulderAttachment
RightHand
	RightWristRigAttachment
	RightGripAttachment
RightLowerArm
	RightElbowRigAttachment
	RightWristRigAttachment
RightUpperArm
	RightShoulderRigAttachment
	RightElbowRigAttachment
	RightShoulderAttachment
UpperTorso
	WaistRigAttachment
	NeckRigAttachment
	LeftShoulderRigAttachment
	RightShoulderRigAttachment
	BodyFrontAttachment
	BodyBackAttachment
	LeftCollarAttachment
	RightCollarAttachment
	NeckAttachment
LeftFoot
	LeftAnkleRigAttachment
LeftLowerLeg
	LeftKneeRigAttachment
	LeftAnkleRigAttachment
LeftUpperLeg
	LeftHipRigAttachment
	LeftKneeRigAttachment
RightFoot
	RightAnkleRigAttachment
RightLowerLeg
	RightKneeRigAttachment
	RightAnkleRigAttachment
RightUpperLeg
	RightHipRigAttachment
	RightKneeRigAttachment
LowerTorso
	RootRigAttachment
	WaistRigAttachment
	LeftHipRigAttachment
	RightHipRigAttachment
	WaistCenterAttachment
	WaistFrontAttachment
	WaistBackAttachment
Head
	FaceCenterAttachment
	FaceFrontAttachment
	HairAttachment
	HatAttachment
	NeckRigAttachment

These are the ones that come native to an R15 rig. You can apply the same process for an R6 rig’s attachment names; a fair number of them stay consistent, just that some don’t exist. You can also add your own attachments and they’d be equally valid attach points for accessories.

17 Likes