of     1   

SippinBubbly
#183366765Thursday, February 11, 2016 5:38 AM GMT

script.Parent.BackgroundColor3 = script.Parent.BackgroundColor3 + Color3.new(n/255, n/255, n/255) n is defined as 10
SippinBubbly
#183367156Thursday, February 11, 2016 5:49 AM GMT

hrrrrreyhezrhhrzrhrhrhrhze
128Gigabytes
#183367274Thursday, February 11, 2016 5:53 AM GMT

You can't do math on colors3s
SippinBubbly
#183367299Thursday, February 11, 2016 5:54 AM GMT

Not at all? What about just .r, .g, .b?
128Gigabytes
#183367375Thursday, February 11, 2016 5:55 AM GMT

You can do that script.Parent.BackgroundColor3 = Color3.new((script.Parent.BackgroundColor3.r + (n / 255)), (script.Parent.BackgroundColor3.g + (n / 255)), (script.Parent.BackgroundColor3.b + (n / 255)))
SippinBubbly
#183367515Thursday, February 11, 2016 5:59 AM GMT

int = 10 function onEnter(element) element.BackgroundColor3 = Color3.new(element.BackgroundColor3.r + (int/255), element.BackgroundColor3.g + (int/255), element.BackgroundColor3.b + (int/255)) end script.Parent.Money.MouseEnter:connect(onEnter(script.Parent.Money)) 23:58:52.961 - Attempt to connect failed: Passed value is not a function
128Gigabytes
#183367605Thursday, February 11, 2016 6:01 AM GMT

script.Parent.Money.MouseEnter:connect(onEnter)
SippinBubbly
#183367645Thursday, February 11, 2016 6:02 AM GMT

00:02:43.139 - Players.Player.PlayerGui.ScreenGui.Frame.LocalScript:4: attempt to index local 'element' (a number value)
128Gigabytes
#183367699Thursday, February 11, 2016 6:04 AM GMT


    of     1