Answered by
4 years ago Edited 4 years ago
So local variables are variables that are local to the function. Global Variables are variables that can be used in multiple functions in the script.
So in this example:
1 | local GlobalVariableNameBlah |
4 | local function RandomFunctionName() |
5 | local LocalVariableNameBlah |
GlobalVariableNameBlah is a global variable and can be changed from anywhere in the script.
However LocalVariableNameBlah is only alive as long as the function is running. And only things inside that function can access that variable.
So for example:
If I wanted to change the Global Variables value I could do it inside the function.
Also note that I could have made it a string or a bool. I just chose an integer.
1 | local GlobalVariableNameBlah |
4 | local function RandomFunctionName() |
5 | local LocalVariableNameBlah |
6 | GlobalVariableNameBlah = 20 |
I can't change the Local variable outside of this function in another function. So for example
01 | local GlobalVariableNameBlah |
04 | local function RandomFunctionName() |
05 | local LocalVariableNameBlah |
06 | GlobalVariableNameBlah = 20 |
09 | local function OtherFunctionName() |
13 | LocalVariableNameBlah = 20 |
16 | GlobalVariableNameBlah = 30 |
It's also important to note that these functions would not run unless I say below them
If they were non local functionsI could call them above them like so:
01 | local GlobalVariableNameBlah |
06 | function RandomFunctionName() |
07 | local LocalVariableNameBlah |
08 | GlobalVariableNameBlah = 20 |
11 | function OtherFunctionName() |
14 | LocalVariableNameBlah = 20 |
17 | GlobalVariableNameBlah = 30 |
Anything declared inside a function is local yes.
Hope this answered your question.