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.
(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 () |
2 | print ( "WHOA MAN I JUST DID SOMETHING" ) |
3 | end |
4 | _G.hellomynameisfunction() |
Very simple,
1 | _G [ "FunctionName" ] = function (argument 1 ,argument 2 ) |
2 | print ( "Code Goes Here Yada Yada" ) |
3 | end |
Then to call it, You use...
1 | print ( "GUYS IMA DO SOMETHING GLOBAL!" ) |
2 | _G.FunctionName( "Somethingthere" , "somethinghere" ) |
3 | print ( "I Did It" ) |
You could also do something like,
1 | _G [ "IsOwnerHere" ] = function () |
2 | is = false |
3 | for i,v in pairs (game.Players:children() do |
4 | if v.userId = = game.CreatorId then |
5 | is = true |
6 | end |
7 | end |
8 | return is |
9 | end |
Then if your in the game
1 | B = _G.IsOwnerHere() |
2 | --B = true |