You see, I want to create my first plugin. So i went to tutorials and went to the link but i couldn't copy an image, so I went and created my own 16x16. then, I copied the script they gave and made a little bit of edits. here is my script:
local plugin = PluginManager():CreatePlugin() local toolbar = plugin:CreateToolbar("Test Plugin") local button = toolbar:CreateButton( "", -- The text next to the icon. Leave this blank if the icon is sufficient. "Click to do nothing :P", -- hover text "icon.png" -- The icon file's name. Make sure you change it to your own icon file's name! ) button.Click:connect(function() game.Soundscape:ClearAllChildren() end)
There was 1 error message at line 1 saying pluginmanager is deprecated.
thanks for reading! If you want, im new to plugins so you could explain some stuff in your answer!