Plugin Window Script Help

I’m trying to make a plugin with a Plugin Widget, And when i show the Widget, this is what I get

image

This is the script:

local Toolbar = plugin:CreateToolbar("Development Plugin")
local Button = Toolbar:CreateButton("Development Plugin", "Toggle the UI for the Development Plugin.", "rbxassetid://1587492522")
local WidgetInfo = DockWidgetPluginGuiInfo.new(Enum.InitialDockState.Float, true, false, 200, 300, 150, 150)
local PluginFrame = script.PluginFrame
local Widget = plugin:CreateDockWidgetPluginGui("RoGold", WidgetInfo)

WidgetInfo.Title = "Development Plugin"
WidgetInfo.Name = "Development Plugin"

PluginFrame.Parent = Widget

I want the “PluginFrame” to be inside the Widget

I fixed it, Don’t worry about it

Please post how you fixed it, then mark that post as the Solution.
It keeps other people from trying to fix your issue if they don’t read all the posts below the first one.
It also helps other people who search for a fix for a similar issue they are having because your post will show as ‘Solved’.

I added something to the script and forgot to update the plugin

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.