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

Tried to make random map system.but it throws an error attempt to index nil with 'Name'. What to do?

Asked by 3 years ago

Server script (in serverscriptservice):

01local lobby_Duration = 10
02local round_Duration = 10
03local maps = game:GetService('ReplicatedStorage'):WaitForChild('Map'):GetChildren()
04local timerval = game.ReplicatedStorage:WaitForChild("TimerValue")
05 
06local function RTimer ()
07    while wait() do
08        for l = lobby_Duration, 0, -1 do
09            timerval.Value = 'Intermission: '..l
10            wait(1)
11 
12            if l == 0 then
13                local map = maps[math.random(#maps, 1)] -- change to your map name
14                timerval.Value = 'Teleporting players to '..map.Name
15                wait(1)
View all 49 lines...

1 answer

Log in to vote
0
Answered by 3 years ago

The reason for this is on the line where you choose a random map, math.random should have a min argument that is lesser than the max argument, you are doing the opposite, that's why it's not choosing a map and returning nil, the fix would probably be to swap the two values

1if l == 0 then
2    local map = maps[math.random(1, #maps)] -- this is the problem
3    nametimerval.Value = 'Teleporting players to '..map.Name
4    -- Your code
0
Then it returns an error invalid argument #2 to 'random' (interval is empty) Br0kenM1ndss 7 — 3y
0
Could it be line 3 where you havent defined what map is? im talking about ' local maps = ' iRedStoneCraftYT 0 — 3y
0
@Br0kenM1ndss that means that your maps folder has 0 children (maps) inside it AnasBahauddin1978 715 — 3y
Ad

Answer this question