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