Server script (in serverscriptservice):
01 | local lobby_Duration = 10 |
02 | local round_Duration = 10 |
03 | local maps = game:GetService( 'ReplicatedStorage' ):WaitForChild( 'Map' ):GetChildren() |
04 | local timerval = game.ReplicatedStorage:WaitForChild( "TimerValue" ) |
05 |
06 | local 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 ) |
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
1 | if 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 |