Plugin Tutorial

I have a question what would you do if you wanted to make an gui but you already have one how would you make it so instead of the notepad it shows the gui I want

Pretty vague question but ill try my best to help.

assuming that since you mentioned the notepad which is the DockWidgetPluginGui, I’ll be using that as my example.
So lets say I made this GUI
image
now lets convert this to a Widget!
Here’s my Hierarchy
image
take the properties of your gui and input it into the code
ex.

local createBrickFrame = Instance.new("Frame") -- make your frame
createBrickFrame.Parent = Widget -- parent the frame to the widget
createBrickFrame.BackgroundColor3 = Color3.fromRGB(52, 52, 52) -- 1 
createBrickFrame.BorderSizePixel = 0 -- 2
createBrickFrame.Size = UDim2.new(1,1,1,1) --  frame size

its pretty simple really, all you need to do is plug in what you want like the tutorial asks.

ps. I didn’t do all of it because for my times sake and the fact the tutorial already explains the concepts, I had no real motivation to do the full script.

k thanks for helping I give you a :cowboy_hat_face: lol

Hey, do you maybe have any idea on how to set the BackgroundTransparency of the Widget itself?

Thanks! I really liked this tutorial. I wanted a tutorial like this.

1 Like