Plugin GUI help? [UNANSWERED]
I have this code as well as a GUI inside the plugin, how do I set it so the person using the plugin can see the ScreenGUI?
01 | local hasLoaded = plugin:GetSetting( "pluginHasLoaded" ) |
03 | print ( "Welcome to Basic Object Changer! To use, just click on the thing you want to change then click the button that you want to change it to!" ) |
04 | plugin:SetSetting( "pluginHasLoaded" , true ) |
07 | local toolbar = plugin:CreateToolbar( "Basic Object Changer" ) |
09 | local button = toolbar:CreateButton( |
10 | "Basic Object Changer" , |
15 | button.Click:connect( function () |
17 | print ( "Plugin Activated!" ) |
I apologize in advance for the trouble I make.