of     1   

SparkleOff
#141293722Wednesday, July 23, 2014 6:27 PM GMT

(NOT FULL SCRIPT) for i, v in pairs (script.Parent.Parent.ImageLabel:GetChildren()) do if v.Name == "B1" and v.Name == "I1" and v.Name == "N1" and v.Name == "G1" and v.Name == "O1" then if v.ImageLabel.Visible == true then topRow[#topRow + 5] = true end end
SparkleOff
#141294004Wednesday, July 23, 2014 6:30 PM GMT

bmp
SparkleOff
#141294180Wednesday, July 23, 2014 6:33 PM GMT

?
FlamedSkull
#141294334Wednesday, July 23, 2014 6:34 PM GMT

Honestly have no idea without the table...
SparkleOff
#141294689Wednesday, July 23, 2014 6:38 PM GMT

topRow = {}     ndtopRow = {}     rdtopRow = {}     thtopRow = {}     bottomRow = {}     toptobot = {}     toptobot1 = {}     toptobot2 = {}     toptobot3 = {}     toptobot4 = {}     toptobot5 = {}     for i, v in pairs (script.Parent.Parent.ImageLabel:GetChildren()) do         if v.Name == "B1" and v.Name == "I1" and v.Name == "N1" and v.Name == "G1" and v.Name == "O1" then             if v.ImageLabel.Visible == true then                 topRow[#topRow + 5] = true             end         end
FlamedSkull
#141295015Wednesday, July 23, 2014 6:42 PM GMT

Why do you need topRow[#topRow + 5]? What are you trying to do there?
SparkleOff
#141296523Wednesday, July 23, 2014 6:58 PM GMT

Its not about that.. I am just asking if this statement right here if v.Name == "B1" and v.Name == "I1" and v.Name == "N1" and v.Name == "G1" and v.Name == "O1" then will it check them for the next part if the image is visible or will it check all in the Image Label in the for i, v in pairs.
SparkleOff
#141297290Wednesday, July 23, 2014 7:07 PM GMT

New script.... local player = script.Parent.Parent.Parent.Parent.Parent local points = 3 script.Parent.MouseButton1Down:connect(function(down)     for i, v in pairs (script.Parent.Parent.ImageLabel:GetChildren()) do         if v.Name == "B1" and v.Name == "I1" and v.Name == "N1" and v.Name == "G1" and v.Name == "O1" then             if v.ImageLabel.Visible == true then                 player.leaderstats.Points.Value = player.leaderstats.Points.Value + points             end         end         if v.Name == "B2" and v.Name == "I2" and v.Name == "N2" and v.Name == "G2" and v.Name == "O2" then             if v.ImageLabel.Visible == true then                 player.leaderstats.Points.Value = player.leaderstats.Points.Value + points             end         end         if v.Name == "B3" and v.Name == "I3" and v.Name == "N3" and v.Name == "G3" and v.Name == "O3" then             if v.ImageLabel.Visible == true then                 player.leaderstats.Points.Value = player.leaderstats.Points.Value + points             end         end         if v.Name == "B4" and v.Name == "I4" and v.Name == "N4" and v.Name == "G4" and v.Name == "O4" then             if v.ImageLabel.Visible == true then                 player.leaderstats.Points.Value = player.leaderstats.Points.Value + points             end         end         if v.Name == "B5" and v.Name == "I5" and v.Name == "N5" and v.Name == "G5" and v.Name == "O5" then             if v.ImageLabel.Visible == true then                 player.leaderstats.Points.Value = player.leaderstats.Points.Value + points             end         end         if v.Name == "B1" and v.Name == "B2" and v.Name == "B3" and v.Name == "B4" and v.Name == "B5" then             if v.ImageLabel.Visible == true then                 player.leaderstats.Points.Value = player.leaderstats.Points.Value + points             end         end         if v.Name == "I1" and v.Name == "I2" and v.Name == "I3" and v.Name == "I4" and v.Name == "I5" then             if v.ImageLabel.Visible == true then                 player.leaderstats.Points.Value = player.leaderstats.Points.Value + points             end         end         if v.Name == "N1" and v.Name == "N2" and v.Name == "N3" and v.Name == "N4" and v.Name == "N5" then             if v.ImageLabel.Visible == true then                 player.leaderstats.Points.Value = player.leaderstats.Points.Value + points             end         end         if v.Name == "G1" and v.Name == "G2" and v.Name == "G3" and v.Name == "G4" and v.Name == "G5" then             if v.ImageLabel.Visible == true then                 player.leaderstats.Points.Value = player.leaderstats.Points.Value + points             end         end         if v.Name == "O1" and v.Name == "O2" and v.Name == "O3" and v.Name == "O4" and v.Name == "O5" then             if v.ImageLabel.Visible == true then                 player.leaderstats.Points.Value = player.leaderstats.Points.Value + points             end         end     end end)

    of     1