Home > Mobile >  Roblox Animation not playing (Lua)
Roblox Animation not playing (Lua)

Time:10-04

I exported FBX animation to Roblox Animator Plugin. In plugin, it was playing perfectly fine, but when I wrote script

local model = script.Parent     
local animControl = model.AnimationController

local idleAnim = animControl:LoadAnimation(script.IdleAnim)
idleAnim.Looped = true

idleAnim:Play()

The animation is not playing. I'd like to post this on Roblox DevForum, but they made it impossible to post anything because of "level up" system.
Any help is appreciated!

EDIT: https://www.youtube.com/watch?v=sn928nkBOrc&list=LL&index=1&t=365s
This is the tutorial I use

CodePudding user response:

So, after some testing, I found out that exactly exported from FBX animations are not playing. But my hand-made animations are playing. Still didn't figure out why, I will edit this post whenever I do.


EDIT: nevermind, it started working. Looks like it was bug.

  • Related