Skip to content

Instantly share code, notes, and snippets.

@ApertureDevelopment
Created April 24, 2020 15:34
Show Gist options
  • Save ApertureDevelopment/c592f842129bc765266d681e172201d7 to your computer and use it in GitHub Desktop.
Save ApertureDevelopment/c592f842129bc765266d681e172201d7 to your computer and use it in GitHub Desktop.
GlobalVar = "Global Variable, avaiable in every file and script"
local locVar = "Local variable, just avaiable in this file"
function test()
local funcVar = "Variable thats just avaiable inside our function"
for i=0, 1, 1 do
local loopVar = "Variable thats just avaiable inside our loop"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment