Spinner giving wrong prize

I trying to make a spinner wheel that spins on the client. I have gotten a random segment, and the angle to spin to, but it shows the wrong reward.

The wheel lands on a 0.5X:
image

The script chose segment 28, which should give 3X instead:
image

Client code (spin animation, wrong segment spun to):

remotes:FindFirstChild("SpinToZ").OnClientEvent:Connect(function(s: BasePart,follow: Model,rotations: number,symbols: number,symbolIndex: number,spinLength: number)
		local x,y = s.Rotation.X,s.Rotation.Y	
		local targetRot = 360*rotations+(symbolIndex-1)*(360/symbols)
		local rot = run.RenderStepped:Connect(function()
			follow:PivotTo(s.CFrame)
		end)
		s.Rotation = Vector3.new(x,y,0)
		tween:Create(s,TweenInfo.new(spinLength,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),{Rotation = Vector3.new(x,y,targetRot)}):Play()	
		task.wait(spinLength)
		rot:Disconnect()
		follow:PivotTo(s.CFrame)
	end)

Server code:


text version:

local index = math.random(1,32)
					print(index)
					local angle = math.rad(index*11.25)
					local mul = segments:FindFirstChild(tostring(index)):GetAttribute("Mul") or 1
					remotes.SpinToZ:FireClient(player,base,segments,rotations,32,index,spinLength)

I have been trying for around a day, and it has been seriously hurting the progress on my game!

1 Like

Bump. 2 hours and as far as I can tell, no one has seen this post.

The thing I noticed is, it seems like the script chose the segment that is the negative version of the angle your wheel landed on. Can you spin the wheel again and screenshot the result again, just to confirm if this is right or not?

It goes to a completely different segment than what it chose. There’s no pattern whatsoever, it’s random with the wrong segment. Maybe I am calculating the wrong angle?

Don’t see what else could it be besides you calculating the angle wrong. By the way, what is the symbolindex variable for?

Its the segment chosen, idk why I put symbol instead of segment