Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How would i make a Color Choosing GUI Like the one shown here?

Asked by
oSyM8V3N 429 Moderation Voter
6 years ago
Edited 6 years ago

I just need to be pointed in the right direction to be able to create this. It would really help if something could assist me in making this :

https://gyazo.com/8f336e61b88f426b9fc85de98a60c14a

1 answer

Log in to vote
1
Answered by
tantec 305 Moderation Voter
6 years ago
Edited 6 years ago

If you want a

while true do
(frame name).BackgroundColor3 = (frame name).BackgroundColor3 + Color3.new(1, 1 ,1)
if (frame name).BackgroundColor3 == Color3.new(255,255,255) then
(frame.name).BackgroundColor3 = Color3.new(0,0,0)
end
wait()
end

If this is what you wanted then happy days! :D

Sorry if this isn't what you wanted :C

EDIT:

You can make your own colour table that you want to go on here!

colourtable = {Color.new(255,0,0), Color.new(232,13,6)}
while true do
for i = 1,#colourtable do
colourneeded = colourtable[i]
(frame.name).BackgroundColor3 = colourneeded
end
wait()
end

Sorry if this is worse and not what you wanted!

0
oh rip i dont know how to make scripting blocks tantec 305 — 6y
0
Its alright, its better than nothing. Thank's for a good start to begin with oSyM8V3N 429 — 6y
0
You welcome dude :D tantec 305 — 6y
0
Also I forgot to add wait() onto the for i function so just pop it in there tantec 305 — 6y
0
Alright, i will. Thanks again oSyM8V3N 429 — 6y
Ad

Answer this question