spawns = mapChosenClone.Spawns:GetChildren() for i,v in pairs(game.Players:GetChildren()) do name = v.Name check = game.Workspace:FindFirstChild(name) if check then checkHumanoid = check:FindFisrtChild("Humanoid") if checkHumanoid then check:MoveTo(spawns[i].Position) end end end
Anyone?
You spelled "First" wrong in the "FindFirstChild" at line 07
You misspelled FindFirstChild, you wrote FindFisrtChild.
Fix that and it should work.