Startercharacterscripts do not continue to insert after death
You could do something like this or use this:
1 | game.Players.PlayerAdded:connect( function (Player) |
2 | Player.CharacterAdded:connect( function (Char) |
3 | script = game.ReplicatedStorage.TheScriptIWantToCloneToCharacter:Clone() |
4 | script.Parent = Char |
5 | end |
6 | end |