Transferring Animations from ReplicatedStorage to Workspace

So I added in an animation to an npc and placed it into Replicated Storage. It was working properly fine in workspace.

This is what I wrote

game.ReplicatedStorage.model.Parent = game.Workspace

Animations on the npc doesn’t work, how do you fix it?

I see, maybe do something like this:

local clone = game.ReplicatedStorage.model:Clone()
clone.Parent = workspace

Also, why don’t you just place it straight away in workspace.

You need to play the animation using the ‘Amimator’ object after it has been shifted to Workspace.

Its an elevator game I’m making