of     1   

rangersmash
#63469939Sunday, February 26, 2012 9:01 AM GMT

[ Content Deleted ]
leolion113
#63470090Sunday, February 26, 2012 9:09 AM GMT

Yes, you could do this... However, you'd only be able to do this by either running it through the command bar, or making it into a plugin.
rangersmash
#63470459Sunday, February 26, 2012 9:33 AM GMT

[ Content Deleted ]
Lead_Scripter
#63472454Sunday, February 26, 2012 12:08 PM GMT

to make a plugin you have to open an empty document and save it as PLUGINNAME.lua in the folder C:\Users\[Username]\AppData\Local\Roblox\plugins\[PluginName]\ in the empty document you could start with this: self = PluginManager():CreatePlugin() mouse = self:GetMouse() toolbar = self:CreateToolbar("ToolbarName") button = toolbar:CreateButton("PluginName", "Description", "Image.png") function On() self:Activate(true) button:SetActive(true) on = true end function Off() button:SetActive(false) on = false end button.Click:connect(function() if on then Off() else On() end end) --Add your own script here
noobkid
#63473105Sunday, February 26, 2012 12:47 PM GMT

You could access .Source via script and then just source = script.Source source = source:gsub(":Destroy",";")
noobkid
#63473136Sunday, February 26, 2012 12:48 PM GMT

Via plugin*

    of     1