Animation script not working

So, I’m using the good old animation script that you find by clicking on,

workspace > slenderW0lf_YT > Animate image

But whenever I put it in starter character scripts, and force the game into R6, upload all of the IDs in the correct space it doesn’t work. Here is what I have, image image image

And I have set the ID in the script to the one I have in the animation. I even put it into the string Value, but it doesn’t work.

	idle = 	{	
				{ id = "http://www.roblox.com/asset/?id=5506769395", weight = 9 },
			},

That is the part of the idle from the script. And this is what happens,

as of writing this please note that I changed the ID of all of them to 5506804751

1 Like

Did You make the scripts working?
Check your Output.

1 Like

The only error is,

image

And this is where it leads to,
image

2 Likes

Is that connected to script ur using to run animations?

1 Like

I’m trying to make a idle animation.

2 Likes

Your using the animate feature in the player want to make sure the animations are not broken

local Figure = script.Parent
local Torso = Figure:WaitForChild("Torso")
local RightShoulder = Torso:WaitForChild("Right Shoulder")
local LeftShoulder = Torso:WaitForChild("Left Shoulder")
local RightHip = Torso:WaitForChild("Right Hip")
local LeftHip = Torso:WaitForChild("Left Hip")
local Neck = Torso:WaitForChild("Neck")
local Humanoid = Figure:WaitForChild("Humanoid")
local pose = "Standing"

local currentAnim = ""
local currentAnimInstance = nil
local currentAnimTrack = nil
local currentAnimKeyframeHandler = nil
local currentAnimSpeed = 1.0
local animTable = {}
local animNames = { 
	idle = 	{	
				{ id = "http://www.roblox.com/asset/?id=180435571", weight = 9 }, -- make sure this is  changed to the id and if its in a group make sure the animation is on the group or it will not work
				{ id = "http://www.roblox.com/asset/?id=180435792", weight = 1 }
			},
	walk = 	{ 	
				{ id = "http://www.roblox.com/asset/?id=180426354", weight = 10 } 
			}, 
	run = 	{
				{ id = "run.xml", weight = 10 } 
			}, 
	jump = 	{
				{ id = "http://www.roblox.com/asset/?id=125750702", weight = 10 } 
			}, 
	fall = 	{
				{ id = "http://www.roblox.com/asset/?id=180436148", weight = 10 } 
			}, 
	climb = {
				{ id = "http://www.roblox.com/asset/?id=180436334", weight = 10 } 
			}, 
	sit = 	{
				{ id = "http://www.roblox.com/asset/?id=178130996", weight = 10 }
2 Likes

Ah that was my problem, I didn’t know that the animation had to be in the group, thank you for telling me!

2 Likes