Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Why is the clone of the character nil?

Asked by 4 years ago

Here's my code in a server script:

1local Players = game:GetService("Players")
2 
3Players.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 char1 = workspace:WaitForChild("char1")
8    root.CFrame = char1:WaitForChild("HumanoidRootPart").CFrame
9end)

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.

1 answer

Log in to vote
1
Answered by 4 years ago
Edited 4 years ago

Player Character models are not archivable by default; if you set it so they are, then it would not be nil.

Here is a script you can put in the workspace that will make characters archivable by default

1game.Players.PlayerAdded:Connect(function(plr)
2plr.CharacterAdded:Connect(function()
3plr.Character.Archivable = true
4end)
5end)
0
Ah! I didn't know this. Thanks! User#41156 0 — 4y
Ad

Answer this question