Global Functions

From Legacy Roblox Wiki
Revision as of 21:12, 23 September 2010 by >Camoy (_G is gone snc)
Jump to navigationJump to search

Introduction

Have you ever wondered how things like :Remove() and :Clone() always work, even though you've never indexed it? Here's how.

How a global command works

If you know how to use the _G[] (global) command, this might come more easily to you than others. This is basically how a global command works:

_G["Bob"] = game.Workspace.Bob

If you're in a ScriptBuilder, you can exit that script and open a new one. Put this in it:

_G.Bob.Torso:Remove()

run that script, and Bob's torso gets removed! Why? Because when we made the assignment using _G["Bob"]=, we are creating an entry in the _G table, and we can reference that entry by calling "_G.Bob".

Getting a global function

_G["Lazer"] = function(person) 
person.Torso:Remove() 
end

Now exit that script, and run this script:

_G.Lazer(game.Workspace.Bob)

If your character's name is "Bob," you should have your torso removed.