of     1   

cvbza
#228369365Sunday, December 03, 2017 7:51 AM GMT

local key = game.Workspace.Keycard local anim = game.Workspace.Keycard.Animation key.Equipped:Connect(function(mouse) anim:Play() end) key.Unequipped:Connect(function(mouse) anim:Stop() end)
SatanxD666
#228369561Sunday, December 03, 2017 7:57 AM GMT

did you provide ## ############ did you use Instance.new to create the animation? did you parent it to the tool? output errors?
SatanxD666
#228369599Sunday, December 03, 2017 7:58 AM GMT

tags were “AnimationId” if you provided one broken filter lol
cvbza
#228369681Sunday, December 03, 2017 8:01 AM GMT

output error says “Play is not a valid member of Animation” and yes i did have AnimationId and i did infact instance the animation and AnimationId but never patented to the tool...lemme check
Soybeen
#228371278Sunday, December 03, 2017 9:15 AM GMT

Your animation object needs to be loaded into a Humanoid or an AnimationTrack before you can play it, using the :LoadAnimation() function of either

    of     1