Why is the clone of the character nil?
Here's my code in a server script:
1 | local Players = game:GetService( "Players" ) |
3 | Players.PlayerAdded:Connect( function (player) |
4 | local char = player.Character or player.CharacterAdded:Wait() |
5 | local clone = char:Clone() |
6 | local root = clone:WaitForChild( "HumanoidRootPart" ) |
7 | local char 1 = workspace:WaitForChild( "char1" ) |
8 | root.CFrame = char 1 :WaitForChild( "HumanoidRootPart" ).CFrame |
I've tried so many things that I just cannot remember anything I've tried. Here's the error that pops up: ServerScriptService.Script:6: attempt to index nil with 'WaitForChild'. Apologies if this is a stupid question, this has just been bothering me so much.