Basically, I made a script where once the round starts you get a mask on, the mask has a weld in it and inside the mask are 2 eyes which also have welding. This is the script where It puts it on the players model
local HockeyMask = KillerModel.Mask:clone() HockeyMask.Parent = workspace.Killer[Killer.Name]
But however, It's not showing on the player, I'm not sure how to fix this If anyone can help, It would majorly be appreciated.
When you put the mask in the player you have to weld the actual mask to the player's head. Refer to http://wiki.roblox.com/index.php?title=Weld for help. I would suggest inside you script you weld it like this.
local Weld = Instance.new("Weld") Weld.Parent = Mask Weld.Part0 = Mask Weld.Part1 = Character.Head Weld.C0 = weld.C0 * CFrame.new(0,0,0)* CFrame.Angles(0,0,0) -- CFrame.new This is to adjust how the mask is position on the face -- CFrame.Angles Rotates the mask on the player's head.