I don't think OP wants the mask to actually attach to the character. Just to follow it around.
This is an example that works if you put in StarterCharacterScripts. It's just a demo though, won't work in a real game because of server/client model. But it shows how you can get just the rotation component of a CFrame.
local character = script.Parent --change this to the character
local rotatingPart = game.Workspace.RotatingPart --change this to the mask
while wait(0.2) do
rotatingPart.BodyGyro.CFrame = CFrame.new(
0,0,0, --position
unpack({character.Head.CFrame:components()}, 4) --rotation
)
end |