So I made a Customization GUI in my Roblox game but, When I equip my hair is facing the other way so, how do I make it face the right way?
Here's the script:
game.ReplicatedStorage.Events.HairEvent1.OnServerEvent:Connect(function(plr) local Storage = game.ReplicatedStorage.Hair["Hair1"] local char = plr.Character if char:findFirstChild("Humanoid") then local Folder = char.Head.Hair Folder:ClearAllChildren() local Head = char.Head local New_Hair = Storage:Clone() New_Hair.Parent = Folder New_Hair.Position = Head.Position local Weld = Instance.new("Weld") Weld.Parent = New_Hair Weld.Part0,Weld.Part1 = Head, New_Hair Weld.C0 = CFrame.new(0,2,0) Weld.C1 = Head.HairAttachment.CFrame end end)