Addition not working on bool value

local round = Instance.new("BoolValue")
local roundValue = round.Value

Then later on in the script I wrote

roundValue += 1

And its saying
attempt to perform arithmetic (add) on boolean and number
Can anyone help? Thanks.

a bool value is either true or false because it is a bool

you can use math on a bool

You can’t add a number to a boolean, simple. What are you trying to achieve exactly?

Also the way you did it would not update the Value property, you’d need to do round.Value += 1 for that (which would still not work)

Man, im literally an idiot. I meant to make int but guess i just messed up. I’m gonna try and delete this post now lol. Sorry