Hello! So this fix is fairly simple! Let me explain it a little bit first.
The way I approach this is by using the PlayerAdded event! It's simple and easy too. Now the problem is how you have you function setup, so I will edit you code to make it compatible with the new code!
Below, is the framework for the new stuff!
1 | function changeMe(player) |
4 | game.Players.PlayerAdded:connect(changeMe()) |
Now that we have the framework, let's continue with the explaination!
01 | function changeMe(player) |
02 | local character = player.Character or player:WaitForChild( "Character" ) |
03 | local humanoid = character.Humanoid or character:WaitForChild( "Humanoid" ) |
04 | if (humanoid ~ = nil ) and debounce = = false then |
06 | originals = character:GetChildren() |
07 | for _, object in pairs (originals) do |
08 | if object:IsA( "CharacterMesh" ) then |
12 | meshes = script:GetChildren() |
13 | for _, object in pairs (meshes) do |
15 | copy.Parent = character |
22 | game.Players.PlayerAdded:connect(changeMe()) |
I definitely changed A Lot of code, but I won't leave you stranded!
If you see, I changed you "for loops" to be MUCH more efficient! Now what they do specifically, is cycle through a table and return two things, the index and the table item! The _, object are those two parameters, but since we don't need the index, I wrote mine as a garbage variable or "_".
Here is also a link for more information on loops, including the one I used!
P.S. Don't copy my code and expect it to fully work! Skim over it to see if there are errors and if there are errors, please let me know!