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

cloning script not working correctly, why?

Asked by 10 years ago

Hello scripting helpers! Today I have a lot of trouble trying to script a script that will change the players appearance when he/she joins to my game, now what this is supposed to do is clone the meshs inside the script to the character, heres the script, also no error shows up on the output :(

game.Players.PlayerAdded:connect(function(player)
player.CharacterAdded:connect(function(character)
script.a:Clone().Parent = character
script.b:Clone().Parent = character
script.c:Clone().Parent = character
script.d:Clone().Parent = character
script.Torso:Clone().Parent = character
end)
end)
1
If the character already has body meshes, it doesn't always overwrite them. Tkdriverx 514 — 10y
0
the players I used to test the script doesn't have meshes biocommand 30 — 10y

Answer this question