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?
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)