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

why does the sparkles color not work as it should???

Asked by 5 years ago

sparkles.SparkleColor = Color3.new(77, 13, 207)

get back in game on the sparklescolor

19635, 3315, 52785

thats not what i entered above, so why dose it change my values??? or why dont it put my values in it? whats wrong here?

1 answer

Log in to vote
1
Answered by 5 years ago

Color3 values work from 0 to 1 like transparency and many other roblox parameters.

It should look something like Color3.new(0.3, 0 , 0.8)

Altough a common trick is dividing by 255. Color3.new(77/255, 13/255, 207/255)

0
but what i get back isnt 0.blabla its a round number User#27824 0 — 5y
0
thank, i did try and it worked User#27824 0 — 5y
Ad

Answer this question