Colors do not change

Can you please tell me if the frame color values ​​below are given correctly? Since in my script everything changes except these colors. Sorry if I’m not speaking correctly, I’m using a translator.

GreenSignallerMenu.BackgroundColor3 = Color3.fromHSV(0, 0, 0)
RedSignallerMenu.BackgroundColor3 = Color3.fromHSV(0, 0.886275, 1)

(Script excerpt)

Обычно я использую

Ui.BackgroundColor3 = Color3.fromRGB(255,255,255)

для полного белого, кстати, я также использую переводчик (I translated this)

english:
Normally I use

Ui.BackgroundColor3 = Color3.fromRGB(255,255,255)

for complete white.

1 Like

Ой лего потему ты поруском поговить здесь!!

friendly fire aside, Color3.new’s inputs are between 1 and 0, where 1 would be 255 and 0 would be 255.

so white would be: Color3.new(1, 1, 1)
or if you use: Color3.fromRGB(255, 255, 255)

2 Likes

You’re right, I forgot to make it Color3.fromRGB(255,255,255) instead of color3.new (I edited the previous post just now)

2 Likes