I’m concerned by CharacterAdded not firing. I don’t have a ton of experience with it and PlayerAdded, but have you looked for reasons why it might not have fired?
Yes it is indeed related to my issue and the solution does make sense when it says that the character is loaded before the CharacterAdded Event is listening because of the delays within the PlayerAdded Event.
Furthermore, I had already done part of what the solution of that thread says by defining the character within the PlayerAdded event as shown above. However, I will also try loading the character before defining the character to make sure that everything is on time.
This indeed works, but you will have an issue with this, because the line of code above, will only be “useful”, for example if it is inside an function,(Fired constantly), because if you put it for example, in the top of the script, your “code” would more likely run ONCE, breaking after the player dies.
This happens due to when an character dies, the Character property from the player, will be nil, and then after loading, it will be the player’s character once again. But as i said, if you put it in an function and that function won’t run once, then the character variable will be updated every time the function is ran.