Attempt to index nil with name and parent?
Asked by
4 years ago Edited 4 years ago
The script I supposed to chose a random map and spawn it in. But I got a few errors.
"Attempt to index nil with 'Name' "
Then I changed it a little and got
Attempt to index nil with 'Parent' "
Script:
01 | local ServerStorage = game:GetService( "ServerStorage" ) |
02 | local MapsFolder = ServerStorage:WaitForChild( "Maps" ) |
06 | status.Value = "Intermission" |
09 | local Maps = MapsFolder:GetChildren() |
11 | local randomMap = math.random( 1 ,#Maps) |
13 | Status.Value = "Map chosen: " ..randomMap.Name |
15 | randomMap.Parent = game.Workspace |