lua how to call a function code example
Example 1: How to connect a function in LUA
(connect(function)
Example 2: lua function
--// Basic Function
function PrintingText()
print("My text here")
end
PrintingText()
Example 3: lua parameters function
--// LUA basic function parameter
function BasicParameter(text)
print(text)
end
BasicParameter("My Text Here")
Example 4: lua functions
function myFunction() -- Start with 'function', give it a name
-- Do something amazing...
end -- Finish with 'end'
myFunction() -- Call the function later in the code