of     1   

gmatch
#223860879Friday, August 18, 2017 7:52 AM GMT

I see people doing this in tables: table = { -- stuff } , { -- more stuff } how does this work? ex 2 in 1 line. table = { "lol", "lol222", 123} , {"asd3", "3rf", "zxce33"} I just see some people doing it and wondered how it works? #code game:GetService("Goat")
JDLENL
#223860906Friday, August 18, 2017 7:53 AM GMT

initializing multiple variables at once for example, local a,b = 1,2 sets a to 1 and b to 2
Ajastra
#223860921Friday, August 18, 2017 7:53 AM GMT

Variables on the left hand side of the equals operator will be given values corresponding to the results of expressions on the right hand side. Extra values on the left will get nil, extra values on the right will be discarded.

    of     1