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

How do you clone multiple things in a MainModule?

Asked by
j5707r -36
6 years ago

In example, we have here the regular main module script:

local module = {}
password = [PASSWORD] -- Ignore this, I blurred out the password.
function module.ReturnTheThing(argument)
    if argument == password then
        return script.Script:Clone()
    end
end
return module

You see where it says script.Script:Clone()? How do I make it where it could say multiple things to clone?

0
Your question should be, "How do I return multiple objects in modules?" MooMooThalahlah 421 — 6y
0
Put all the objects in a folder and clone the folder User#20388 0 — 6y

Answer this question