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

How do I make functions global?

Asked by
wrenzh 65
11 years ago

So that I may use them in any script in the place, including LocalScripts and server Scripts.

I made a global function using _G in a LocalScript, but when I tried to call it on a server Script, it failed.

2 answers

Log in to vote
1
Answered by 11 years ago

(I would post this in a comment if I had 10+ reputation) I'm fairly sure you cannot specify a global functions (and global variables) in a localscript. Try putting it into a normal one:

1_G["hellomynameisfunction"]=function()
2print("WHOA MAN I JUST DID SOMETHING")
3end
4_G.hellomynameisfunction()
Ad
Log in to vote
0
Answered by
MixCorp 70
11 years ago

Very simple,

1_G["FunctionName"] = function(argument1,argument2)
2    print("Code Goes Here Yada Yada")
3end

Then to call it, You use...

1print("GUYS IMA DO SOMETHING GLOBAL!")
2_G.FunctionName("Somethingthere","somethinghere")
3print("I Did It")

You could also do something like,

1_G["IsOwnerHere"] = function()
2is = false
3for i,v in pairs(game.Players:children() do
4if v.userId == game.CreatorId then
5is = true
6end
7end
8return is
9end

Then if your in the game

1B = _G.IsOwnerHere()
2--B = true
0
If this helped, An Upvote would be greatly appriciated. MixCorp 70 — 11y
0
That is exactly what I did. I put code like the first snippet into a LocalScript then attempted something like the second snippet in a server script, and it did not work. wrenzh 65 — 11y
0
Hmm MixCorp 70 — 11y
0
The only issue I could imagine you having, is an error in the function or code. Post the code in your q MixCorp 70 — 11y
1
As far as I am aware, global functions defined in LocalScript's cannot be called in a Server Script, but the opposite does work. BlueTaslem 18071 — 11y

Answer this question