-
What do you want to achieve? I want it so that the startercharacter scripts load but its not loading for some reason
-
What is the issue? idk how to fix it and im not allowed to run/low health animation with this dev skin
-
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)