local num = 0
local col = 0
local maxincol = 100
local g = Instance.new("ScreenGui", script.Parent)
local f = Instance.new("Frame", g)
for r = 0,255, 1 do
for g = 0,255, 1 do
for b = 0,255, 1 do
local c = Instance.new("TextLabel", f)
c.Size= UDim2.new(0,25,0,25)
c.Text = ""
c.Parent = script.Parent
c.Position = UDim2.new(0, col*26, 0, num*26)
c.BackgroundColor3 = Color3.new(r/255, g/255, b/255)
num = num+1
if num == 100 then
col = col+1
num = 0
else
end
wait()
end
wait()
end
wait()
end
print('complete')
script:destroy()
put this script inside a player, you have over 50k colors right there c: |