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

how to make a function inside a module script? [closed]

Asked by 8 years ago

I don't know if someone will actually answer me, but I just don't understand the videos on this subject. Can someone please help?

0
Check the wiki, we do NOT make scripts for free. Check out the wiki and look up "ModuleScript". On the bottom there are 3 examples. Again, we do NOT make scripts for people. EzraNehemiah_TF2 3552 — 8y
0
You need to make the script yourself first before anyone can help you. The link is here: http://wiki.roblox.com/index.php?title=API:Class/ModuleScript#Example EzraNehemiah_TF2 3552 — 8y

Closed as Not Constructive by EzraNehemiah_TF2, SimplyRekt, and Perci1

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
0
Answered by 8 years ago
Edited 8 years ago

Heya,here's a quick example:

local module = {}
module.SomeFunction=function(Message)
print(Message)
end
return module

Ad