Functions are named blocks of code that can be executed whenever called. They are different from variables, as variables are named values of data. For example:
These are variables, you specify a name and assign a value to them. They could be numbers, strings (collection of characters, refer to second variable in the previous example), etc.
For functions, they work differently. Take the following as an example:
02 | local function add(x, y) |
15 | local result = add( 1 , 2 ) |
For functions you specify a name, parameters, and then define the instructions inside.
In this example, the function add() can be called anytime with 2 numbers as arguments, and it will return the sum. Note: You dont always need to specify any parameters for functions. Refer to the documentation at the end of this answer.
In the examples you gave, they're both variables. Except, one of them is named "function". This isn't actually a function, just a variable named so.
As per variable-naming conventions, you don't use keywords as variables names. Keywords are any words reserved by the programming language you're using or other libraries/modules.
"function" is a keyword, as it's used for defining functions, so you don't want to use that.
Other examples of keywords in Lua: "local", "if", "else", "for", "do", and more.
To learn more about Lua (the programming language that Roblox uses for scripts), you can read the documentation here:
https://www.lua.org/pil/1.html
Here is the documentation for variables:
https://www.lua.org/pil/1.2.html
https://www.lua.org/pil/4.2.html
And here is the documentation related to functions in Lua:
https://www.lua.org/pil/5.html