Whitespace
From Legacy Roblox Wiki
Whitespace is a type of character used to make code easier to read. It is ignored (in most cases) by the Lua compiler.
{{Example| Without whitespace:
random_number = 153 good_food = "tacos"
With whitespace:
number = 476 disgusting_food = "fried chicken"
}}