I need help on this! I'm making a FNAF rp game and that when you hover the mask button it will fire an event and place a mask on the player, it works fine but, the mask faces one direction, I want it to face where the Player's head is facing!
local mask = game.ServerStorage.FNAFMask:Clone() mask.CFrame = player.Character.Head.CFrame * CFrame.new(0,0.50,0) mask.Orientation = player.Character.Head.CFrame.lookVector mask.Parent = player.Character.Head
Here this should work,
local mask = game.ServerStorage.FNAFMask:Clone() mask.CFrame = player.Character.Head.CFrame + player.Character.Head.CFrame.LookVector mask.Parent = player.Character.Head