of     1   

Skenderbeu98
#221217749Thursday, July 13, 2017 4:16 PM GMT

I have this mask that follows the player around with bodyposition. Obviously, the first probably I ran into was it would just rotate like crazy. So I added a BodyGyro and set the CFrame to upright. So now it's at least looking straight. What I'm trying to figure out now is how do I make the mask constantly face the direction the player is facing? Any thoughts? Thanks.
Skenderbeu98
#221218425Thursday, July 13, 2017 4:27 PM GMT

Bump
Skenderbeu98
#221271149Friday, July 14, 2017 3:17 AM GMT

v
Jon_TheDev
#221272965Friday, July 14, 2017 3:41 AM GMT

Instead of using BodyPosition and BodyGyro just weld the mask to the face. --Jon_TheDev
WillieTehWierdo200
#221285046Friday, July 14, 2017 7:01 AM GMT

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

    of     1