local KAH = game.Lighting.KAHair:Clone() KAH.Parent = script.Parent.Parent.Parent.Parent.Parent.Character
Try this in a local script, It should give the desired output:
local plr = game.Players.LocalPlayer local char = plr.Character local KAH = game:GetService("Lighting").KAHair:Clone() KAH.Parent = char
Hope this helped