of     1   

CalebR5
#44621461Saturday, March 26, 2011 4:48 PM GMT

C = game.Lighting.RoundValues:GetChildren() for i,v in pairs(game.Players:getChildren()) do C[math.random(1,#C)].Value = 1 A.Text = _________ What would go in the blank to make the Hint's Text the name of the random value the script chose?
Cheater
#44621528Saturday, March 26, 2011 4:49 PM GMT

A.Text = C.Value or something like that
shouksta
#44621635Saturday, March 26, 2011 4:51 PM GMT

C = game.Lighting.RoundValues:GetChildren() for i,v in pairs(game.Players:getChildren()) do chosen = C[math.random(1,#C)] chosen.Value = 1 A.Text = chosen.Name
CalebR5
#44622975Saturday, March 26, 2011 5:11 PM GMT

That didn't work. (By the way, I already tried filling in the blank with C.Name)
CalebR5
#44623207Saturday, March 26, 2011 5:15 PM GMT

Sorry, it did work, I made a mistake. Thank you!

    of     1