Ok, so you have a function to make a part, for example:
2 | local x = Instance.new( "Part" , workspace) |
And now, lets say that we want to edit it later in a script.
Well, how do we know what part it is? We can't do workspace.Part, because there might be other parts there, and that wouldn't be a good thing, removing the wrong part. So lets add a return:
2 | local x = Instance.new( "Part" , workspace) |
What this allows us to do is it allows us to store what we return in a variable, like this:
You can also return multiple things:
02 | local x = Instance.new( "Part" , workspace) |
04 | local y = Instance.new( "Part" , workspace) |
06 | local z = Instance.new( "Part" , workspace) |