You are trying to change a table value, the table value does not have transparency. Think of it like this, a table isn't the variable it just holds the variables kinda like your dresser (if you have one) holds your socks but you can't see the color of the socks until you open the dresser drawer and tell it which sock you want .
You can use a for loop
to do this by looping the amount of items in the table and giving the current number it is on a variable... kinda confusing but I'll explain.
Example:
1 | exampletable = { 1 , 2 , "a" , "d" ,c = 12 , q = 20 } |
3 | for i,v in pairs (exampletable) do |
v is the current "number" it goes to like in an example for statement it is the second value but instead of it being an actual number value it's a variable (this works with getting the children of something to). It will then do this in the pairs of example table (inpairs tutorial: http://wiki.roblox.com/index.php?title=Function_dump/Basic_functions#pairs ) I guess to sum that all up it basically goes through the number of items in a table.
So in your case this should be a simple solution:
01 | a = script.Parent.Parent.Parent.Blocker.a |
02 | b = script.Parent.Parent.Parent.Blocker.b |
03 | c = script.Parent.Parent.Parent.Blocker.c |
04 | d = script.Parent.Parent.Parent.Blocker.d |
05 | e = script.Parent.Parent.Parent.Blocker.e |
06 | f = script.Parent.Parent.Parent.Blocker.f |
07 | g = script.Parent.Parent.Parent.Blocker.g |
08 | h = script.Parent.Parent.Parent.Blocker.h |
09 | i = script.Parent.Parent.Parent.Blocker.i |
10 | j = script.Parent.Parent.Parent.Blocker.j |
11 | blockers = { a,b,c,d,e,f,g,h,i,j } |
15 | for i,v in pairs (blockers) do |
23 | script.Parent.ClickDetector.MouseClick:connect(onClicked) |
If this helped make sure to click Accept Answer
If you have any questions just ask!