So I wanna make it so you can get all players in a click detector script instead of just the one who clicked. The code below:
1 | script.Parent.MouseClick:Connect( function (plr) |
Only gets the player who clicked. Is it possible to fix this? The reason is because im using table.Insert to make a player who survived gui, and it unpacks the table after, so I wanna get all players instead of the one who clicked.
Based on what you said in the comments I beleive what you want to do is get all the players in the server to do this you may want to do
01 | PlayersService = game:GetService( "Players" ) |
02 | Players = PlayersService:GetPlayers() |
03 | --Though this would store the player object of every player in a table instead you may want to print all the names of the players like this |
04 |
05 | for i, player in pairs (Players) do |
06 | print (player.Name) |
07 | end |
08 |
09 | --or to add the names to a table |
10 | playertable = { } |
11 | for i, player in pairs (Players:GetPlayers()) do |
12 | table.insert(playertable, player.Name) |
13 |
14 | end |