lua global variables roblox lua code example
Example 1: how to program lua roblox variables
--These are variables
variable = "Hi"
print(variable)
--now you will see in the output Hi when you have press the button play
Example 2: lua roblox function
function NameOfFuction()
--Your code
end