0
How do i make it so there is no floats (lua)
When i try using ints they turn into floats
1 Answer
0
There are no int or float types in Lua, there is only number type. If you want to remove floating point from number, use "math.floor(your_number)"
When i try using ints they turn into floats