calling function lua 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 call custom function
functionname("parameters")