How do I turn my hair around?
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:
01 | game.ReplicatedStorage.Events.HairEvent 1. OnServerEvent:Connect( function (plr) |
02 | local Storage = game.ReplicatedStorage.Hair [ "Hair1" ] |
03 | local char = plr.Character |
05 | if char:findFirstChild( "Humanoid" ) then |
07 | local Folder = char.Head.Hair |
09 | Folder:ClearAllChildren() |
11 | local Head = char.Head |
12 | local New_Hair = Storage:Clone() |
14 | New_Hair.Parent = Folder |
15 | New_Hair.Position = Head.Position |
16 | local Weld = Instance.new( "Weld" ) |
17 | Weld.Parent = New_Hair |
18 | Weld.Part 0 ,Weld.Part 1 = Head, New_Hair |
19 | Weld.C 0 = CFrame.new( 0 , 2 , 0 ) |
20 | Weld.C 1 = Head.HairAttachment.CFrame |