Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Why isn't the value multiplying correctly?

Asked by 5 years ago

I am having trouble with this code

game.ServerStorage.ClickDetector:Clone().Parent = RainBB

01RainBB.ClickDetector.MouseClick:Connect(function(player)
02 
03local PlayerRain = player.leaderstats.Rain
04local PlayerRebirth = player.leaderstats.Rebirths
05local PlayerMulti = player.leaderstats.Multiplier
06 
07 
08PlayerRain.Value = PlayerRain.Value + 1 * (PlayerRebirth.Value) + 1 * (PlayerMulti.Value)
09 
10 
11 
12RainBB:Destroy()
13wait()
14end)
15 
16end

Basically, when you click the rain block, it will give you rain in your leaderstats. But for some reason, It is not multiplying with the rebirths and multiplier. I really need help with this in order to release my game. Thanks!

1 answer

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

You need to use proper parentheses.

01PlayerRain.Value = PlayerRain.Value + 1 * (PlayerRebirth.Value) + 1 * (PlayerMulti.Value)
02--should be
03PlayerRain.Value = (PlayerRain.Value + 1) * ((PlayerRebirth.Value) + 1) * (PlayerMulti.Value)
04--You gotta remember pemdas
05--Parentheses
06--Exponents
07--Muiltiplication
08--Division
09--Addition
10--Subtraction

You were trying to add +1 to rebirths and rain, but really what happened was you multiplied rebirths and rain by 1.

Ad

Answer this question