For some reason it is not loading or showing the animation. https://gist.github.com/anonymous/355d0bcedaf5a4d8ab81
Maeyrl That code should be in a method, and not in onEnable. If you use a method you can call the code to do its work.
Maeyrl Even tho this is spoonfeeding code, people learn off it, so here ya go: Code:java public static void loreFrames(){//your code} You do not put this in onEnable. And to run the method, simply do: Code:java loreFrames(); Hope I helped.