of     1   

shboop
#223676065Monday, August 14, 2017 10:45 PM GMT

for example a = dostuff a is only used in the enclosing function, consider changing it to local does local a = dostuff even change anything?
amanda
#223676199Monday, August 14, 2017 10:48 PM GMT

local variables are obtained faster than normal variables they also only are accessible in their scope source: http://wiki.roblox.com/index.php?title=Variable#Local_Variables
shboop
#223676282Monday, August 14, 2017 10:50 PM GMT

ok, thanks.
RobuxLife
#223677814Monday, August 14, 2017 11:23 PM GMT

always use local variables example: local x = "hi" print(x) > hi local function print() local y = "bye" print(y) end > bye print(y) (outside of the function, aka scope) > nil - RobuxLife | Discord - RobuxLife#4128 | - RobuxLife | Discord - RobuxLife#4128 |

    of     1