Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Selecting random player, error, why?

Asked by 11 years ago

Hi guys, I'm TheLorizz and I don't know why but the math.randoms 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:

01local players = game.Players:GetChildren()
02local innocents = {}
03local traitor
04local detective
05 
06function findType(p)
07    local td = p:FindFirstChild("TempData")
08    local type = td:FindFirstChild("Type")
09    return type
10end
11 
12_G.startGame = function()
13    local h = Instance.new("Hint", game.Workspace)
14    h.Text = "Selecting traitor!"
15    wait(2)
View all 37 lines...

Why? I repeat, this is the first time!

1 answer

Log in to vote
1
Answered by 11 years ago

That happens when you have empty tables. Why that happens? Essentially this is what happens: math.random(1, 0) and Lua doesn't like that. Make sure the tables aren't empty.

0
local players = game.Players:GetChildren() that's why! I don't update this variable, THANKS! alessandro112 161 — 11y
Ad

Answer this question