How do I make it when a player touches a part an animation plays for an npc

How do I make it when a player touches a part an animation plays for an npc?

2 Likes

You’d likely use the on touch event.

part.Touched:Connect(function()
     [YOUR CODE HERE]
end)
2 Likes

I know that but I dont know the part to get the animation and play it on an npc

2 Likes

Maybe this could help you.