Whenever I try to run the script, the output just says "ServerScriptService.Script:14: attempt to index field '?' (a nil value)" I don't know what's happening, because if I remove the CFrame, the output just says "expecting CFrame". Help?
01 | local MapsLocation = ServerStorage:WaitForChild( "Maps" ) |
02 | local plrs = { } |
03 | local GetMaps = MapsLocation:GetChildren() |
04 | local MapToAppear = GetMaps [ math.random( 1 , #AVMaps) ] |
05 | local MapCloned = MapToAppear:Clone() |
06 | MapCloned.Parent = game.Workspace |
07 | local SpawnBricks = MapCloned:FindFirstChild( "Spawn" ) |
08 | local SpawnsToTeleport = SpawnBricks:GetChildren() |
09 | wait( 3 ) |
10 | for i, plr in pairs (plrs) do |
11 | if plr then |
12 | char = plr.Character |
13 | if char then |
14 | char:FindFirstChild( "HumanoidRootPart" ).CFrame = SpawnsToTeleport [ 1 ] .CFrame |
15 | table.remove(SpawnsToTeleport, 1 ) |
16 | end |
It's because you are indexing an empty table, you have no value for the player in the table.
local plrs = {}
-- Empty table
for i, plr in pairs(plrs) do
-- indexing empty table
char:FindFirstChild("HumanoidRootPart").CFrame = SpawnsToTeleport[1].CFrame
-- indexing nil value
So, I discovered that I could use the variable SpawnsToTeleport, use it as a table and put the SpawnBricks variable in.
01 | local MapsLocation = ServerStorage:WaitForChild( "Maps" ) |
02 | local plrs = { } |
03 | local GetMaps = MapsLocation:GetChildren() |
04 | local MapToAppear = GetMaps [ math.random( 1 , #AVMaps) ] |
05 | local MapCloned = MapToAppear:Clone() |
06 | MapCloned.Parent = game.Workspace |
07 | local SpawnBricks = MapCloned:FindFirstChild( "Spawn" ) |
08 | local SpawnsToTeleport = { SpawnBricks } |
09 | wait( 3 ) |
10 | for i, plr in pairs (plrs) do |
11 | if plr then |
12 | char = plr.Character |
13 | if char then |
14 | char:FindFirstChild( "HumanoidRootPart" ).CFrame = SpawnsToTeleport [ 1 ] .CFrame |
15 | table.remove(SpawnsToTeleport, 1 ) |
16 | end |
It didn't give me the error again, so yay?