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() |