Functions: Revision history

From ROBLOX Wiki
Jump to navigationJump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

11 December 2024

  • curprev 00:1700:17, 11 December 2024 PRG talk contribs 2,584 bytes +2,584 Created page with "__TOC__ == Introduction == Functions perform specific tasks. Some functions are already predefined, and some functions you create yourself. The idea behind the functions is the same. == Simple functions == Let's take a look at a simple function. <pre> function myfunction() -- what this function does x=2+2 print(x) end myfunction() -- call the function </pre> Everything between <b>function</b> and <b>end</b> simply describes what your function..."