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:
The script chose segment 28, which should give 3X instead:
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!