okay so after i make the animation in the plugin animation thing an export it to animations how do i script it and put into my game and when scripting it how do u put a hot key for the animation u wanna use like e - to fly i really need help because this my first time i ever tried to script something so can some one please help me cause i dont even know where to start.? :/
To Play the animation you just need to
NAMEOFANIMATION:Play() --To start Animation
To Stop it
NAMEOFANIMATION:Stop()
to use keys are like this
local tool = script.Parent tool.Selected:connect(function(mouse) mouse.KeyDown:connect(function(key) if key == "Letter goes here" then end end) end)