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

How to use 'return' in function?

Asked by 8 years ago
Edited 8 years ago

Please make your question title relevant to your question content. It should be a one-sentence summary in question form.
01local Fruittilium = game.Workspace.Fruittilium
02local Player = game.Players.LocalPlayer
03local Mouse = Player:GetMouse()
04Mouse.Button1Down:connect(function()
05    if Mouse.Target == Fruittilium then
06    print("you clicked it")
07    local Fruit = Fruittilium:Clone()
08    Fruit.Parent = game.Workspace
09    Fruit.Name = "A Copy of Fruittilium"
10         --  I want to return this 'vector3.new(Mouse.Hit.p)'
11end
12end)

So how do I use 'return' to return that value?

0
You can put a variable before you connect the even then assign the value when the event is fired. How / where will this value be used? User#5423 17 — 8y
0
Let me get you a full explanation once I'm st my desk lightpower26 399 — 8y

1 answer

Log in to vote
0
Answered by
Link150 1355 Badge of Merit Moderation Voter
8 years ago
Edited 8 years ago

Unfortunately, returning values from an event callback is possible, but useless.

This is because your callback function is being called by Roblox, who doesn't expect, or simply doesn't care whether you return values or not. It will just discard them.


Upvalues

Thankfully there is a way around this. What you can do instead is use "upvalues". That sounds like a whole new concept, but the truth is you've probably already used them before without knowing what they were called. Upvalues are variables that are declared prior to your function, in an upper scope. For example:

01local tool = script.Parent
02 
03local selection
04 
05 
06tool.Equipped:connect(function(mouse)
07    local user = tool.Parent
08 
09    mouse.Button1Down:connect(function()
10        -- 'selection' here is an upvalue, because it was declared
11        -- outside of the current function.
12        selection = mouse.Target
13 
14        -- Note that 'user' is also an upvalue here.
15    end)
View all 32 lines...

Conclusion

By setting and getting upvalues from within your functions, you can send information around without having to rely on returning values.

Anyway, I hope this helped. If it did then please be sure to accept, and optionally upvote, my answer. It helps both of us. ;) If you need anything else, you need only ask.

Ad

Answer this question