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

How can I be able to get this to function correctly?

Asked by 10 years ago

This script does not seem to function correctly. It only puts on player in a slot and no one else. It's supposed to get all the players on a specific team color and put them into random slots in imagelabels once so that all the players on that team are in an image label value. Can someone help me?

    local labels={[1] = script.Parent.Parent.BackFrame.Frame.PlayerSpot}
            local count=1
            wait(0.5)
            --print(labels, count)
            for _,v in pairs(game.Players:GetPlayers())do
          if v.TeamColor==BrickColor.new'Bright blue'and labels[count]then
        labels[count].PName.PlayName.Value=v.Name
        table.insert(labels,count,v.Name)
        count=count+1
print("Done putting slots for blue")
end
            end

Answer this question