Hair accessories do not fit correctly on head

		local hairTemplate = ReplicatedStorage.Customization.Hairs:FindFirstChild(itemName)
		if hairTemplate then
			for _, accessory in pairs(character:GetChildren()) do
				if accessory:IsA("Accessory") and accessory.Name == "Hair" then
					accessory:Destroy()
				end
			end

			local newHair = hairTemplate:Clone()
			newHair.Name = "Hair"

			local handle = newHair:FindFirstChild("Handle")
			if handle then
				local head = character:FindFirstChild("Head")
				if head then
					newHair.Parent = character
				
				end
			end
		end

how can i fix this problem where the accessories just do not want to go on correctly or in some cases do fit, the code above is serverside of a remoteevent where im adding the accessory into the character, im not quite sure how i could manually get them to fit without changing ALL of the positions

https://gyazo.com/f7a3a4be14938a75798ab70bdd05cf4a

3 Likes

Is it the size of the hair that is strange? Because if it is, that actually happened to me once. I would clone the hair and then paste the cloned hair into the character. then, I would set the cloned hair’s size as the original hair’s size. Hope that helps!

1 Like

If my memory is right I’m pretty sure I had this issue before and what I did to fix it was using this tool.

Still not entirely sure if that’s what i used but good luck on finding your answer.

1 Like

Without seeing your setup fully, you could try something like this instead and see if you see a difference:

local hairTemplate = ReplicatedStorage.Customization.Hairs:FindFirstChild(itemName)
if hairTemplate then
	local humanoid = character:FindFirstChildOfClass("Humanoid")
	if humanoid then
		for _, accessory in humanoid:GetAccessories() do
			if accessory.Name ~= "Hair" then
				continue
			end
			accessory:Destroy()
		end
		
		local newHair = hairTemplate:Clone()
		humanoid:AddAccessory(newHair)
	end
end

The main difference here is that I’m using AddAccessory which would hopefully provide a better result.

i actually fixed it by tediously adjusting the attachment on a rig in the workspace which surprisingly fixed it so all good now, thanks for helping

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.