i have the gui done, but i have no idea what can i do. help?
First You need to make a list specifically for the players that are online
01 | while true do |
02 | people = { } |
03 | for i, player in pairs (game.Players:GetPlayers()) do |
04 | --GetPlayers() grabs all the players within the list |
05 | if player and player.Character then |
06 | --Checks to make sure the person is completely loaded into the game |
07 | local humanoid = player.Character:WaitForChild( "Humanoid" ) |
08 | if humanoid and humanoid.Health > 0 then |
09 | --Does the same as done before |
10 | table.insert(people,player) |
11 | end |
12 | end |
13 | end |
14 | end |
You must then choose via random with math.random
1 | Chosen = people [ math.random( 1 , #people) ] |
2 | --Do whatever with the chosen player after this line |