Unsure how to make one, to be honest. Haven’t really made a color picker like it before, and am unsure where to even start.
I’ve looked around on devfourms and of course youtube, but none of them are like the color picker i’d like.
Basically i just need someone to point me in the right direction on how to get started with it. Be it documentation that is relevant, code/model that accomplishes this, really anything, i’d appreciate it.
I am unsure what you mean by color picker. If you mean a random color picker then use
local function RandomColor()
local Color = instance.new("color3")
Color.fromRGB(Math.Random(0, 255), Math.Random(0, 255), Math.Random(0, 255))
yourobject.color = Color
end
Figured it out.
“HSV” is what you want to look for. With the proper image, you can easily convert between HSV and position values. H is the X position, S is the Y, and V is the darkness slider.