Main public logs
From ROBLOX Wiki
Jump to navigationJump to search
Combined display of all available logs of ROBLOX Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 00:17, 11 December 2024 PRG talk contribs created page Functions (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...")