Jump to content

Error(6): Attempt to perform arithmetic on a boolean value


cuervox123

Recommended Posts

It's really self explanatory. A boolean value is either true or false. You're attempting to do some math calculations with a boolean value.

For example;

local x = false 
print(x+10) 

This would return the same error. Of course you can't do false+10 or true+10. The debug will tell you exactly on what line this error occurs - go from there. :)

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...