Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

What does the syntax return do ?

Asked by
Kozero 120
11 years ago

Like this for example:

1function Hello(name)
2if true then
3--code
4return name
5end
6end

2 answers

Log in to vote
1
Answered by 11 years ago

Ok, so you have a function to make a part, for example:

1function make()
2local x = Instance.new("Part", workspace)
3--stuff to make it nice
4end

And now, lets say that we want to edit it later in a script.

1make()
2wait(5)
3workspace.Part:remove()

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:

1function make()
2local x = Instance.new("Part", workspace)
3--stuff to make it nice
4return x
5end

What this allows us to do is it allows us to store what we return in a variable, like this:

1local b = make()
2wait(5)
3b:remove()

You can also return multiple things:

01function make()
02local x = Instance.new("Part", workspace)
03--stuff to make it nice
04local y = Instance.new("Part", workspace)
05--stuff to make it nice
06local z = Instance.new("Part", workspace)
07--stuff to make it nice
08return x,y,z
09end
10 
11local a,b,c = make()
12wait(5)
13a:remove()
14b:remove()
15c:remove()
Ad
Log in to vote
-1
Answered by
war8989 35
11 years ago

It's returns a value. So if you were to do:

1myname = Hello("war8989")
2print(myname)

It'd print "war8989".

0
Yup! war8989 35 — 11y
0
Hang on this is not want I'm asking for.I want to know how I can use it. Kozero 120 — 11y

Answer this question