#How do I make the animations visible ingame and for it to always repeat
12 messages · Page 1 of 1 (latest)
when ur making animation or in script
or in properties of animation
and what u mean visible ingame
like npc which playing animation ?
** You are now Level 2! **
ah finally one i have an answer for @vocal oak
i had this problem a few days ago
what you need to do is make a script and inside that script put
local animation = script:WaitForChild('Animation')
local humanoid = script.Parent:WaitForChild('Humanoid')
local dance = humanoid:LoadAnimation(animation)
dance:play()
dance.Looped = true
and you need to put an animation object below like this
and put that script in your npc like this
@vocal oak ^