Why wont startercharacter scripts load?

  1. What do you want to achieve? I want it so that the startercharacter scripts load but its not loading for some reason

  2. What is the issue? idk how to fix it and im not allowed to run/low health animation with this dev skin

  3. What solutions have you tried so far? i put the startercharacter scripts in the character skin but it doesnt work

game.Players.PlayerAdded:Connect(function(plr)
	plr.CharacterAdded:Connect(function(char)
		if plr.UserId == 178196501 then
			local mm = plr.Character
			local as = mm.Animate:Clone()
			local devskin = game.ReplicatedStorage.Hank:Clone()
			devskin.Parent = workspace
			devskin:MoveTo(char.PrimaryPart.Position)
			plr.Character = devskin
			mm.Archivable = true
			mm:Destroy()
			as.Parent = devskin
		end
	end)
end)

Put this script in workspace and just apply description to your character:

game.Players.PlayerAdded:Connect(function(plr)
	plr.CharacterAdded:Connect(function(char)
		if plr.UserId == 178196501 then
			local mm = plr.Character
			local devskin = game.ReplicatedStorage.Hank
			mm.Humanoid:ApplyDescription(devskin.Humanoid:GetAppliedDescription())
		end
	end)
end)