|
"Script2 is not a child of localscript", its not a local script tho...
--LUSKIEM development
--Link5659
print "AntiSploit" -- replace "testing123 with the name of your plugin"
local toolbar = plugin:CreateToolbar("AntiSploit") --dont touch
local button = toolbar:CreateButton(
"", -- put in the name of your plugin, if your using a image, leave it blank
"AntiSploit", --this gives the name or desc. of the plugin when the user hovers over it
"http://www.roblox.com/asset/?id=352049779" --the image/thumbnail for your icon 16x 16 (recommended)
)
local item = script:GetChildren()
function PluginFunction() --put your plugin's function in here
for i = 1, #item do
local a = item[i].AntiSploitFogRemover:clone()
a.Disabled = false
a.Parent = game.ServerScriptService
local b = item[i].AntiExploitStarterGui:clone()
b.Disabled = false
b.Parent = game.StarterGui
local c = item[i].AntiExploitStarterPack:clone()
c.Disabled = false
c.Parent = game.StarterPack
local d = item[i].AntiSploitSpeedHack:clone()
d.Disabled = false
d.Parent = game.StarterGui
end
end
function ButtonClicked() --dont touch
PluginFunction()
end
button.Click:connect(ButtonClicked) --dont touch
|