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

How can I make a player clone spawn properly?

Asked by 6 years ago

I have a clone player script which clones the player, but the clone doesn't have a shirt or pants or any accessories. How would I fix this? Here is my script:

01game.Players.PlayerAdded:Connect(function(plr)
02    plr.CharacterAdded:Connect(function(char)
03        char.Archivable = true
04        local d = char:Clone()
05        d.Parent = game.Workspace
06 
07        d.UpperTorso.CFrame = CFrame.new(0,50,0)
08 
09    end)
10end)

1 answer

Log in to vote
0
Answered by 6 years ago

Your character was loading in too quickly meaning that the clone would spawn before any of the textures had been fully loaded.

01game.Players.PlayerAdded:Connect(function(plr)
02    plr.CharacterAdded:Connect(function(char)
03    char:WaitForChild("Shirt" and "Pants")
04        char.Archivable = true
05        local d = char:Clone()
06        d.Parent = game.Workspace
07 
08        d.UpperTorso.CFrame = CFrame.new(0,50,0)
09 
10    end)
11end)

If this helped, don't forget to give it an Up vote!

0
Thank you! CaptainD_veloper 290 — 6y
0
You're welcome! :) xXTouchOfFrostXx 125 — 6y
Ad

Answer this question