Adding number to a number value without combining the numbers

I’m going to do my best and try and explain this. I’m trying to make a value that adds 2 digits next to each other for example if I did 1 +2 It would make three I want to add the 1 next to the 2 to make 12. Sorry if that’s a bad explanation. Any ideas on how I could achieve this

Use concatenation

local twelve = 1 .. 2
print(twelve) --> 12

Oh I forgot about that lol tysm!!

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.