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?
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