Hello devs i was making a little plugin with the widget and it has an image in the middle but for some reason the widget is missing the image in the center its an empty widget
local bar = plugin:CreateToolbar("Doge plugin")
local button1 = bar:CreateButton(
"Doge Buddy",
"Doge watches you in Roblox Studio!!!",
"http://www.roblox.com/asset/?id=107693287486306"
)
local info = DockWidgetPluginGuiInfo.new(
Enum.InitialDockState.Float,
true,
true,
200,
200,
150,
150
)
local widget1 = plugin:CreateDockWidgetPluginGui("DogeBuddyWindow", info)
widget1.Title = "Doge Buddy"
local Image = Instance.new("ImageLabel")
Image.Name = "DogeImage"
Image.Parent = widget1
Image.BackgroundTransparency = 1
Image.Size = UDim2.new(0, 150, 0, 150) -- Image size
Image.Position = UDim2.new(0.5, 0, 0.5, 0) -- Center position
Image.AnchorPoint = Vector2.new(0.5, 0.5) -- Center anchor
Image.Image = "rbxassetid://139545812091545"
Image.ImageTransparency = 0
Image.ScaleType = Enum.ScaleType.Fit
Image.ZIndex = 1
button1.Click:Connect(function()
widget1.Enabled = not widget1.Enabled
end)
I’d assume your image is still under moderation in that case, best thing to do is wait for a while and if nothing happens then file a bug report possibly.