Selecting random player, error, why?
Hi guys, I'm TheLorizz and I don't know why but the math.random
s I put doesn't work, why? This is the first time!
I need to select a traitor and a detective from the innocents array, but the output gives me this on "math.random()" lines:
bad argument #2 to 'random' (interval is empty)
This is the code:
01 | local players = game.Players:GetChildren() |
07 | local td = p:FindFirstChild( "TempData" ) |
08 | local type = td:FindFirstChild( "Type" ) |
12 | _G.startGame = function () |
13 | local h = Instance.new( "Hint" , game.Workspace) |
14 | h.Text = "Selecting traitor!" |
16 | for i, player in pairs (players) do |
17 | table.insert(innocents, player) |
18 | local type = findType(player) |
19 | type .Value = "Innocent" |
23 | traitor = innocents [ math.random( 1 , #innocents) ] |
24 | local ttype = findType(traitor) |
25 | ttype.Value = "Traitor" |
26 | table.remove(innocents, traitor) |
27 | h.Text = "Traitor selected:" .. " " .. traitor |
29 | h.Text = "Selecting detective!" |
30 | detective = innocents [ math.random( 1 , #innocents) ] |
31 | local dtype = findType(detective) |
32 | dtype.Value = "Detective" |
33 | table.remove(innocents, detective) |
34 | h.Text = "Detective selected:" .. " " .. detective |
36 | h.Text = "Game started!" |
Why? I repeat, this is the first time!