Ring.CFrame = Ring.CFrame * CFrame.fromOrientation(Ring.Orientation+1)
The script
ServerScriptService.Server:73: invalid argument #2 (Vector3 expected, got number)
The Error
Ring.CFrame = Ring.CFrame * CFrame.fromOrientation(Ring.Orientation+1)
ServerScriptService.Server:73: invalid argument #2 (Vector3 expected, got number)
The Error
Change this to:
Ring.Orientation + Vector3.new(1,1,1)
Argument 3 missing or nil i get this error.
Ring.CFrame = Ring.CFrame * CFrame.fromOrientation(0, math.rad(1), 0)
for c = 1,90 do
Ring.CFrame = Ring.CFrame * CFrame.fromOrientation(0, math.rad(1), 0)
end
why not spin
try
for c = 1,90 do
Ring.CFrame = Ring.CFrame * CFrame.Angles(0, math.rad(1), 0)
end
still not working for some reason. | local Ring = game:GetService(“ReplicatedStorage”).BossAttackType.Attack1Boss.Ring:Clone() |
that ring cloned.