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:
01 | game.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 ) |
10 | end ) |
Your character was loading in too quickly meaning that the clone would spawn before any of the textures had been fully loaded.
01 | game.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 ) |
11 | end ) |
If this helped, don't forget to give it an Up vote!