This may be a bad question, but I have seen it in many scripts and do not know what it represents. As it is seemingly important, what does it mean? Thanks!
Hi! A * in lua coding represents multiplication. If you said print(6 * 5), it would print 30. Hope this helps!
Yep, the * sign represents Multiplication. You can use * in functions such as print(10*5), and this would print '50' in the output window.