I have a selection box with a part and i can see the selection box, in there is script saying:
i = (255 - (script.Parent.Parent.Bag.clicks.Value * 12)) while true do script.Parent.Color3 = Color3.new(150,255,i) wait() end
and i also just tried:
--i = (255 - (script.Parent.Parent.Bag.clicks.Value * 12)) --while true do script.Parent.Color3 = Color3.new(150,255,255) --wait() --end
But the color3 (i checked manually) says : 38250, 65025, 65025, those are all more than 255 and HOW DOES THAT HAPPEN!?!??!? i completely took away script and its normal, so obviously the color3 thing is not working correctly, how do i fix this? thanks :)
You have to use Color3.fromRGB() instead of Color3.new()
Color3.new() uses 0 -> 1 Color3.fromRGB() uses 0 -> 255