How Would I Do This?
How would I see if the Children are greater than a certain number. And if they are do something. I just don't know how to check the children:
03 | PlayerCount = game.Players:GetChildren() |
05 | for PlayerCountLoop = 1 , #PlayerCount do |
06 | leaderstats = (PlayerCount [ PlayerCountLoop ] :WaitForChild( "leaderstats" )) |
08 | print (PlayerCount [ PlayerCountLoop ] .Name .. "'s Stats" ) |
09 | print (leaderstats.Attack.Value.. " - Attack" ) |
10 | print (leaderstats.Defense.Value.. " - Defense" ) |
11 | print (leaderstats.Agility.Value.. " - Agility" ) |
12 | print (leaderstats.Energy.Value.. " - Energy" ) |
13 | print (leaderstats [ "Power Level" ] .Value.. " - Power Level" ) |
17 | game.Players.PlayerAdded:connect(PlayerCount) |