-
What do you want to achieve?
To make a functional halo. -
What is the issue? Include screenshots / videos if possible!
https://gyazo.com/884ed0e2d44a15608f8ea0f4d7f46b8e
The halo is in a wrong angle and im confused. -
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
None atm.
Script:
local NHalo = script.Parent
local Number = 1
local cf = CFrame.new
local cfa = CFrame.Angles
game:GetService("RunService").Stepped:Connect(function(t)
local tpi=t%math.pi
local AP=cf(0,-1.5+math.sin(tpi)/8,0)*cfa(0,tpi,0)
NHalo.AttachmentForward = NHalo.AttachmentForward + Vector3.new(1,0,0)
NHalo.AttachmentPos = Vector3.new(0,0,-1)
NHalo.AttachmentPoint = AP
end)