Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I turn my hair around?

Asked by 5 years ago

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:

01game.ReplicatedStorage.Events.HairEvent1.OnServerEvent:Connect(function(plr)
02    local Storage = game.ReplicatedStorage.Hair["Hair1"]
03    local char = plr.Character
04 
05    if char:findFirstChild("Humanoid") then
06 
07        local Folder = char.Head.Hair
08 
09        Folder:ClearAllChildren()
10 
11        local Head = char.Head
12        local New_Hair = Storage:Clone()
13 
14        New_Hair.Parent = Folder
15        New_Hair.Position = Head.Position
View all 23 lines...

Answer this question