of     1   

Eyin
#16013678Thursday, October 29, 2009 9:34 PM GMT

How do I return the global table to an enviorment? function Printer() print(Print) script:Remove() end setfenv(Printer, {Print = "L", print = print, _G = unpack(_G)}) Printer()
Eyin
#16014167Thursday, October 29, 2009 9:45 PM GMT

Nvm, I made something =D function TestFunctions() output("Text Appears in Output") m = make.new(message) m.Text = " " m.Parent = game h = make.new(hint) h.Parent = game hp = make.new(hopperbin) hp.Parent = game t = make.new(tool) t.Parent = game m = make.new(model) m.Parent = game f = make.new(forcefield) f.Parent = game end setfenv(TestFunctions, {output = print, script = script, game = workspace, make = Instance, message = "Message", hint = "Hint", model = "Model", tool = "Tool", hopperbin = "HopperBin", brick = "Part", truss = "TrussPart", forcefield = "ForceField"}) TestFunctions()

    of     1