Lua Code For Roblox
Lua Code For Roblox. local a = 5 multiplier = 5 function multiplyByFive (num) return num * multiplier end local p = multiplyByFive (a) In this instance the multiplier variable becomes a global by defining it without the local keyword Adding this to the end of the script executes just fine local product = a…