Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

BodyGyro still not working?

Asked by 9 years ago

Hello! I am developing a small fairy that will follow you around the map as you move. It can follow you and does it quite well. but the fairy is just staring off in one direction. I tried putting in a BodyGyro to make the fairy face the character at all times. This is what I have so far:

game.Players.PlayerAdded:connect(function(p)
    p.CharacterAdded:connect(function(c)
        spawn(function()
            while wait() do
                script.Parent.PartBase1.BodyGyro.cframe = CFrame.new(script.Parent.PartBase1.Position, c.Head.Position)
            end
        end)
    end)
end)

The BodyGyro does nothing and the fairy just stares in one direction. There is nothing in the output so I have no idea whats going on. Any help?

~Minikitkat

0
No one is answering. Is anyone experienced with BodyGyros? minikitkat 687 — 9y

Answer this question