of     1   

Lua_Basics
#182570708Thursday, January 28, 2016 9:24 PM GMT

"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
Lua_Basics
#182573782Thursday, January 28, 2016 10:15 PM GMT

anyone?

    of     1