Script help CFrame

Ring.CFrame = Ring.CFrame * CFrame.fromOrientation(Ring.Orientation+1)

The script

ServerScriptService.Server:73: invalid argument #2 (Vector3 expected, got number)

The Error

1 Like

Change this to:

Ring.Orientation + Vector3.new(1,1,1)
1 Like

Argument 3 missing or nil i get this error.

1 Like

Ring.CFrame = Ring.CFrame * CFrame.fromOrientation(0, math.rad(1), 0)

1 Like
				for c = 1,90 do	
						Ring.CFrame = Ring.CFrame * CFrame.fromOrientation(0, math.rad(1), 0)
				end

why not spin

1 Like

try

for c = 1,90 do	
	Ring.CFrame = Ring.CFrame * CFrame.Angles(0, math.rad(1), 0)
end
1 Like

still not working for some reason. | local Ring = game:GetService(“ReplicatedStorage”).BossAttackType.Attack1Boss.Ring:Clone() |
that ring cloned.