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)