|
| 31 Aug 2014 03:16 PM |
Players = game.Players:GetChildren() wait(0.1) -- ingore this too Good = p[math.random(1,#p)] -- Get's a random player wait(0.1) print ("Person 1 has been found") wait(0.1) -- ingore this too Bad = p[math.random(1,#p)] -- Get's a random player wait(0.1) print ("Person 2 has been found" |
|
|
| Report Abuse |
|
|
blockoo
|
  |
| Joined: 08 Nov 2007 |
| Total Posts: 17202 |
|
|
| 31 Aug 2014 03:20 PM |
players = game.Players:GetPlayers() rand1 = math.random(1, #players) pick1 = players[rand1] table.remove(players, rand1) pick2 = players[math.random(1, #players)] |
|
|
| Report Abuse |
|
|
| |
|
blockoo
|
  |
| Joined: 08 Nov 2007 |
| Total Posts: 17202 |
|
| |
|
|
| 31 Aug 2014 03:39 PM |
| Sorry bumped it before I saw your post :3 |
|
|
| Report Abuse |
|
|