function myFunction() -- Start with 'function', give it a name
-- Do something amazing...
end -- Finish with 'end'
myFunction() -- Call the function later in the code
function name (parameters)
--code
end
--// Basic Function
function PrintingText()
print("My text here")
end
PrintingText()
local function hi()
Your thing
-- You can do either
local hello = "Hello World!"
-- Or
print("whatever you want to put in the output")