Variables

Variables are lines of text that are used to declare code. It is mostly used as a shortcut, and a quick way to write out long lines of code. Variables are declared shown below.

local MyVariable = game.Workspace.Part

We use the format "local (variable name) = Location/Code"

Last updated