How do I make the animation start running?

I’m trying make make these tentacles to start being animated, and I’m not sure how to do that. I’ve never worked with animations so this is all new to me.

Workspace:
Workspace ScreenShot

The animation works perfectly in the roblox animator, but all that is next is to start the animation.

(ive got no script since I dont even know where to begin :confused: )

Any help is appreciated!

You can do at script to start the animation

local tentacle1 = workspace.Tentacle1
local animation = tentacle1.Humanoid:LoadAnimation(tentacle1.TentacleMovement1)
animation:Play()
2 Likes

Wow, that was so simple! This works perfectly, thank you!

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.