How can I give the custom character animations? it turns the player into the custom character but doesn’t play animations. Any fixes or solutions?
game.Players.PlayerAdded:connect(function(player)
player.CharacterAdded:connect(function(Character)
if player.RandomValue.Value == true then
print("works")
local change = game.ReplicatedStorage.Characters.StarterCharacter:Clone()
change.Parent = workspace
player.Character = change
end
end)
end)