of     1   

Exllumina
#144439095Sunday, August 24, 2014 10:55 PM GMT

ok so i minimized the script to only what i wanted to show that doesn't work: the following variables are buttons (and are located fine) the text on the buttons supposed to fade out but they don't. local c = script.Parent.Parent.fullcredits local d = script.Parent.Parent.credits local e = script.Parent.Parent.options local f = script.Parent.Parent.spectate local g = script.Parent.Parent.startplaying local vars = { d = 1, e = 2, f = 3, g = 4 } function onClicked(button) -- out table of variables b, c uars.Visible = false -- fade out table of variables d, e, f, g wait(1) vars.TextTransparency = 0.1 wait() vars.TextTransparency = 0.2 wait() vars.TextTransparency = 0.3 wait() vars.TextTransparency = 0.4 wait() vars.TextTransparency = 0.5 wait() vars.TextTransparency = 0.6 wait() vars.TextTransparency = 0.7 wait() vars.TextTransparency = 0.8 wait() vars.TextTransparency = 0.9 wait() vars.TextTransparency = 1 wait() wait() vars.Visible = false end
Exllumina
#144439156Sunday, August 24, 2014 10:56 PM GMT

oops. take off this line, it's not supposed to be there: local c = script.Parent.Parent.fullcredits
Exllumina
#144439452Sunday, August 24, 2014 10:59 PM GMT

local bump = script.Parent.Parent.Parent.Parent.Parent.whydoesnthiswork.BumpNum = 1
Exllumina
#144440747Sunday, August 24, 2014 11:14 PM GMT

local bump = script.Parent.Parent.Parent.Parent.Parent.whydoesnthiswork.BumpNum = 2
Exllumina
#144441424Sunday, August 24, 2014 11:24 PM GMT

when i take off the vars table and make anything i wanted individually - it works -_- huh

    of     1