I would like to know how to make animations play OnKeyDown. You know you feell like doing something or whatsoever... well anyway, thanks for listening.
Put the Animation Into StarterPack.
Name the Animation: hybric
Insert a Local Script into StarterPack.
Make the LocalScript have this:
function Hybric(key) local key = key:lower() if key == "e" then -- change "e" to the Key you want it to be script.Parent.Parent.Character.Humanoid:LoadAnimation(script.Parent.hybric):Play() -- hybric is the animation name, if you didnt put that as the name, change it to "hybric" end end script.Parent.Parent:GetMouse().KeyDown:connect(Hybric)
> LOOK AT LINE 4, ITS CUT OFF, THE ":PLAY(" SHOULD BE ":Play()"
my guess is to do
OnKeyDown(e) do function play.Animation()
something like that but that wouldn't work am sure of it.