What does the keyword "return" means/ and what it does?
Return stops functions in a script.
e.g
function addNumbers(num1, num2) return num1 + num2 end a = addNumbers(3, 5) print(a)
If you have statements before end and after return, you'll receive errors.
So everytime you have a return, make sure to end it afterwards.