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

Setting TintColor on ColorCorrectionEffect causes it to glitch?

Asked by 5 years ago

When setting the colorcorrectioneffect's tintcolor like this:

ColorCorrection.TintColor = Color3.new(47, 47, 47)

makes the tintcolor.. [11985, 11985, 11985].

Am I doing something wrong or is this a glitch?

1 answer

Log in to vote
1
Answered by
Simnico99 206 Moderation Voter
5 years ago
Edited 5 years ago

You should use Color3.FromRGB() because Color3.New() is expecting a number between 1 and 0

ColorCorrection.TintColor = Color3.FromRGB(47, 47, 47)
0
thank Ashley_Phantom 372 — 5y
0
or you could also do Color3.new(47/255, 47/255, 47/255); but yes, the above way is more recommended. Zafirua 1348 — 5y
Ad

Answer this question