of     2   
chevron_rightchevron_rightchevron_right

LiLEViL
#182924551Wednesday, February 03, 2016 6:05 AM GMT

Can someone give me a detailed tutorial on how arguments in functions work, and also how 'return' works. I've read just about everything on the wiki but the descriptions are short and usually only show a small example. Thanks.
cntkillme
#182924745Wednesday, February 03, 2016 6:14 AM GMT

When you want to call a function, sometimes it needs information. Like if you created a function that damages all players, it needs to know how much damage to do. Or if you write a function that gives a player a weapon, you need to tell it which player to give it to. And in that same situation of taking damage, maybe you wanted to know how much total damage was given so you add up all the damage given and return the sum. local function damageAllPlayers(amount) local total = 0; local players = game.Players:GetPlayers(); for idx = 1, #players do local humanoid = players[idx].Character.Humanoid local damage = math.min(humanoid.Health, amount); total = total + damage; humanoid:TakeDamage(damage); end return total; end print("Damage given to all players: " .. damageAllPlayers(50));
LiLEViL
#182926017Wednesday, February 03, 2016 7:19 AM GMT

I don't understand what 'amount' is, how exactly is that defined in the code? How is the argument defined as a value or string or even an object? And what does return do? Or more why is it needed?
cntkillme
#182926063Wednesday, February 03, 2016 7:22 AM GMT

amount is just a local variable that is set by the caller, when I did: 'damageAllPlayers(50)', I passed 50 as an argument, so the amount parameter (really just a local variable in Lua) was set to 50. Return will stop execution of the function and return control back to the caller, meaning if you place a return like this: function abc() if true then return end print("hi") end hi will never be printed. Optionally you can return values from a function meaning the caller will get them back, so if I did this: function abc() return 123 end local num = abc() print(num) 123 would be printed since the function returned 123 (you can return multiple values too)
LiLEViL
#182926179Wednesday, February 03, 2016 7:29 AM GMT

Ok I'm starting to understand it, I gotta get to sleep so I l'll look at this more tomorrow, thanks a lot.
[rfa#hidefromsearch]
#182926468Wednesday, February 03, 2016 7:50 AM GMT

[rfa#hidefromsearch]
cntkillme
#182927075Wednesday, February 03, 2016 8:44 AM GMT

Another way to think about it is in an algebraic sense. You've probably taken a couple of math classes in your life and used functions: f(x) = 3x That function (f) would take an input (x) and return an output (3x). If you think of the inputs as parameters and the outputs as return values, it might make more sense. function f(x) return 3*x end
128Gigabytes
#182928407Wednesday, February 03, 2016 11:05 AM GMT

local function example(x, y) print(x + y) end example(32, 96) --[[> 128, this is the line we call the function on.]] Arguments are passed when you call the function. You can have as little as 0, and as many as...Theres a limit but I forget what it is, its larger than anything you would ever need. You also don't have to pass them when you call the function, if will be automatically passed as nil if you don't (In my example function, example(32) or example() would both call the function normally but the print line would error that x or y is a nil value) You can also pass more than the needed ammount of arguments (example(32, 96, 128)) but the extra arguments just don't do anything so theres not a reason to so it. You can also pass a tuple of arguments, most commonly used to pass an unknown number of arguments without needing to directly pass a table. Its used like this. (The tuple is basically an unpacked table so doing {...} will 'repack' it) local function example(...) for _, value in next, ({...}) do print(value) end end example("a") --[[> a]] example("a", "b", "c") --[[> a b c]] You see tuple used in functions like math.max like this print(math.max(1, 2, 128, 4, 8)) --[[> 128]] --[[math.max is basixally this]] local function max(...) local array = {...} table.sort(array) return (array[1]); end You can also use regular arguments with tuple arguments as long as you do the tuple last. local function example(x, y, ...) for _, z in next, ({...}) do print((x + y) + z) end end example(1, 2, 4, 8, 16) --[[> 7 11 19]]
LiLEViL
#182956022Wednesday, February 03, 2016 11:58 PM GMT

I'm confused on exactly why you would use a function/tuple, why make a function to lets say create a IntValue and parent it to the workspace as apposed to just typing. Instance.new("IntValue",workspace) local function example(...) for _, value in next, ({...}) do Instance.new(...) end end example("IntValue",workspace,"StringValue",workspace) ^ How would I get this to work? I'm trying to create the intvalue and string value but it only creates the intvalue. Also how would I get this to work? local function max(...) local array = {...} table.sort(array) return (array[1]); end I tried print(max(53,75,26,103)) -- The output will put out the 2nd number '75' instead of 103?
cntkillme
#182958545Thursday, February 04, 2016 12:35 AM GMT

To get your first one to work, they're separated in pairs so something like: local function example(...) local arguments = {...}; for key = 1, #arguments, 2 do Instance.new(arguments[key], arguments[key + 1]); end end And for max (even though a math.max already exists lol): local function max(...) local array = {...} table.sort(array) return (array[#array]); end
128Gigabytes
#182959970Thursday, February 04, 2016 12:56 AM GMT

In your example there isn't a reason to use a function instead of just using Instance.new() But sometimes using a function can make your script more efficent or just easier to write.
cntkillme
#182960373Thursday, February 04, 2016 1:02 AM GMT

Technically, using a function will almost never make your script more efficient. Just more manageable and readable, which might lead to writing more efficient code.
71428
#182962337Thursday, February 04, 2016 1:37 AM GMT

"Technically, using a function will almost never make your script more efficient" I agree by I rather not have my eyes pierced every time I read some random script. I suggest everyone to always follow this format, not for their sake but for the rest of everyone else. Which one would you rather? function spawnwhatever() return Instance.new("wa90eruiq9-rui9-qaci9-aui9-djaipwdmkpawdjipaj39urf9-ajfpiajf9pija3pf9ja3pifja3p9fja39pfjaipcjipajcp9a3j9cja39pcj39pacjpacpia3jcip3ajc90a3jcpa3cjipa3cj99a3pc39acwa90eruiq9-rui9-qaci9-aui9-djaipwdmkpawdjipaj39urf9-ajfpiajf9pija3pf9ja3pifja3p9fja39pfjaipcjipajcp9a3j9cja39pcj39pacjpacpia3jcip3ajc90a3jcpa3cjipa3cj99a3pc39ac") end --Spawn three i9d-qi9-q-wdk9-qw things local x = spawnwhatever() local y = spawnwhatever() local z = spawnwhatever() or local x = Instance.new("wa90eruiq9-rui9-qaci9-aui9-djaipwdmkpawdjipaj39urf9-ajfpiajf9pija3pf9ja3pifja3p9fja39pfjaipcjipajcp9a3j9cja39pcj39pacjpacpia3jcip3ajc90a3jcpa3cjipa3cj99a3pc39acwa90eruiq9-rui9-qaci9-aui9-djaipwdmkpawdjipaj39urf9-ajfpiajf9pija3pf9ja3pifja3p9fja39pfjaipcjipajcp9a3j9cja39pcj39pacjpacpia3jcip3ajc90a3jcpa3cjipa3cj99a3pc39ac") local y = Instance.new("wa90eruiq9-rui9-qaci9-aui9-djaipwdmkpawdjipaj39urf9-ajfpiajf9pija3pf9ja3pifja3p9fja39pfjaipcjipajcp9a3j9cja39pcj39pacjpacpia3jcip3ajc90a3jcpa3cjipa3cj99a3pc39acwa90eruiq9-rui9-qaci9-aui9-djaipwdmkpawdjipaj39urf9-ajfpiajf9pija3pf9ja3pifja3p9fja39pfjaipcjipajcp9a3j9cja39pcj39pacjpacpia3jcip3ajc90a3jcpa3cjipa3cj99a3pc39ac") local z = Instance.new("wa90eruiq9-rui9-qaci9-aui9-djaipwdmkpawdjipaj39urf9-ajfpiajf9pija3pf9ja3pifja3p9fja39pfjaipcjipajcp9a3j9cja39pcj39pacjpacpia3jcip3ajc90a3jcpa3cjipa3cj99a3pc39acwa90eruiq9-rui9-qaci9-aui9-djaipwdmkpawdjipaj39urf9-ajfpiajf9pija3pf9ja3pifja3p9fja39pfjaipcjipajcp9a3j9cja39pcj39pacjpacpia3jcip3ajc90a3jcpa3cjipa3cj99a3pc39ac") Yes it's a massive exaggeration but you get the point.
Wrathsong
#182962400Thursday, February 04, 2016 1:38 AM GMT

https://www.youtube.com/watch?v=4uYbUzk08FA
cntkillme
#182963101Thursday, February 04, 2016 1:48 AM GMT

71428 must be one of those people who see a single part of a post and jump to conclusions without reading the rest.
71428
#182963163Thursday, February 04, 2016 1:49 AM GMT

I was expanding my agreement on that point alone. I wasn't arguing with you.
LiLEViL
#182963671Thursday, February 04, 2016 1:57 AM GMT

I'm not sure if you already explained this but, what exactly does the return do? You gave me this script. local function max(...) local array = {...} table.sort(array) return (array[1]); end What does return do? Why is it needed?
Wrathsong
#182967183Thursday, February 04, 2016 2:52 AM GMT

If you want a function to RETURN something, that just means you want it to give you something back. It could be a bool (true or false value) an integer value, a CFrame or position https://www.youtube.com/watch?v=khh-GmEhO5Q
LiLEViL
#182967440Thursday, February 04, 2016 2:57 AM GMT

function x() print(5+5) end x() That above doesn't have a return and it gives me the sum of 10, I don't really get why you need to return something from a function, what exactly does the return get you I don't see why you need the return or what it does.
Wrathsong
#182967751Thursday, February 04, 2016 3:03 AM GMT

When you need to perhaps calculate an *unknown* value from a function
cntkillme
#182967756Thursday, February 04, 2016 3:03 AM GMT

local players =game.Players:GetPlayers() The GetPlayers function has to return something so you can actually get a list of all the players.
Wrathsong
#182967984Thursday, February 04, 2016 3:07 AM GMT

^ kinda hard to explain to beginners. Methods/custom functions like GetPlayers() always return something. For example, GetPlayers() returns a table of all players in a game. FindFirstChild() returns whatever you're searching for with it if it'd found, else it returns nil.
LiLEViL
#182968136Thursday, February 04, 2016 3:10 AM GMT

function d() local players = game.Players:GetChildren() for i = 1,#players do print(players[i]) end end d() No return and it runs, the output prints out the players. Sorry if I'm being a pest I just really want to learn this right and really understand it.
Wrathsong
#182968275Thursday, February 04, 2016 3:13 AM GMT

nah you're fine. not all of your custom functions need to have a return at the end. but all ROBLOX methods will return something, like GetChildren as you used above. you know because you iterated through it. it returns a table. what your function does is print the table it got.
LiLEViL
#182968493Thursday, February 04, 2016 3:16 AM GMT

Ok, I just don't get why we need to actually type return in the code? Like here local function max(...) local array = {...} table.sort(array) return (array[1]); end Like is there a case where the code wont run unless you return something manually?

    of     2   
chevron_rightchevron_rightchevron_right