01 | local pfr = script.Parent.pframeholder |
02 | local p 1 = pfr.p 1. p 1 image.Image |
03 | local p 2 = pfr.p 2. p 2 image.Image |
04 | local p 3 = pfr.p 3. p 3 image.Image |
05 | local p 4 = pfr.p 4. p 4 image.Image |
06 |
07 | local plrs = { } |
08 |
09 | game.Players.ChildAdded:connect( function (p) |
10 | table.insert(plrs,p.Name) |
11 | print (plrs [ 1 ] ) |
12 | end ) |
13 |
14 | game.Players.PlayerRemoving:connect( function (pl) |
15 | table.remove(plrs,pl.Name) |
16 | end ) |
I don't know why it won't work.