Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How Would I Do This?

Asked by 10 years ago

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:

01function PlayerCount()
02 
03    PlayerCount = game.Players:GetChildren()
04 
05    for PlayerCountLoop = 1, #PlayerCount do
06        leaderstats = (PlayerCount[PlayerCountLoop]:WaitForChild("leaderstats"))
07 
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")
14    end
15end
16 
17game.Players.PlayerAdded:connect(PlayerCount)
0
Glad to help :) wjs3456 90 — 10y
0
Now I can carry on with my game :) BosswalrusTheCoder 88 — 10y

1 answer

Log in to vote
1
Answered by
wjs3456 90
10 years ago

I think you could just use an if statement. Try:

1if #PlayerCount > 9 then -- Nine is just the example.  Any number can go there
0
Thanks! BosswalrusTheCoder 88 — 10y
Ad

Answer this question