ROBLOX STYLE UIGradient Editor FOR YOUR PLUGINS!
I just want it done. sorry for the bad coding. i am all ears to suggestions on how i could have written it better. feel free to tutor me. on that note, here is the preview of it
this is how the explorer look like for show case.

local PluginUIGradient = require(script.PluginUIGradient)
local ShowCasePartGUI = workspace.ShowCasePart.SurfaceGui.Frame
local newGradientEditor = PluginUIGradient.new("id2")
newGradientEditor:BindToUpdate(function(colorSequence)
ShowCasePartGUI.UIGradient.Color = colorSequence
end)
newGradientEditor:Prompt() -- you could pass a initial color sequence that it resets to
i used SwagBoss ArtemVoronin0’s PluginColorPicker a color picker for plugins. its a awesome module. I tried to make it similar to his code but then I gave up real quick.
here is the PluginUIGradient


