Functions in Roblox Lua
Functions let you reuse blocks of code.
local function greet() print("Hello, world!") end greet()
← Back to Home