So, I’m trying to make this siren light thing and tried to make the “light” rotate around the center (if that makes sense) but failed. I’ve set the pivot point to the center.
local Ball = workpace.Ball --Set this to the ball
local Cone = script.Parent
while true do
Ball.CFrame *= CFrame.Angles(0.1, 0, 0)
Cone.CFrame = Ball.CFrame * CFrame.new(0, 0, -3) --Change -3 to the distance
task.wait()
end