SimpleAnimate | An easy-to-use & flexible module replacement for the default Animate script

Hi, this was a bug that i patched recently, Check if you have the most recent version

1 Like

Isnā€™t it already compatible with the emote wheel? Itā€™s made by Roblox so I doubt you can change it to use SimpleAnimate, or if thereā€™s even a point of that.

Dunno, it doesnt work when I try it. Could just be some unrelated bug

1 Like

Iā€™ve got the 20 February version, which is the latest, isnā€™t it?

No, the latest was 26th

Ill update the download link when i get home

Hello, Iā€™ve updated the download link. Let me know if you still canā€™t get the latest version

Hello

I updated but now i get this

ReplicatedStorage.Scripts.AnimationController.Core.PoseController:74: attempt to index nil with ā€˜Playā€™

I havenā€™t changed my code

local simpleAnim = require(game.ReplicatedStorage.Scripts.AnimationController)

local animNames = { 
	Idle = 	{	
		{ id = "180435571", weight = 9 },
		{ id = "180435792", weight = 1 }
	},
	Walk = 	{ 	
		{ id = "180426354", weight = 10 } 
	}
}

local animator = simpleAnim.new(script.Parent.Parent, animNames)

If you can help me, thanks!

Hi, youre removing all the other core animations by setting it to that, I suggest doing SimpleAnimate.getCopyOfAnimsList() and editing that instead so you retain the other keys

1 Like

Hi, sorry to bother you again

I tried what you told me but I couldnā€™t find the function, I tried to look a bit in the code but I didnā€™t see it either

I searched a little bit what can cause that and found that if i do print(self:GetRandomAnim(pose)) in play animation it just return nil even if the animation is in the table i dont know if itā€™s intended

Hi, Iā€™ll try updating the download link xd, please be patient

Hi, the download link has been updated to the newest version, let me know if you still experience issues (if so itā€™s probably a real bug)

Hello, so I updated the mod and core animations works again thanks !!
but i still get attempt to concatenate string with nil

local outfloorAnimInfo = {
	outFloor = {
		{id="10274503988254", weight = 10}
	}
}
local outFloor = animator.Action:Create("outFloor", outfloorAnimInfo, Enum.AnimationPriority.Action4)
outFloor:Play()

maybe I did something wrong ?

You have to do Action:Play(ā€œActionNameā€): (AnimationTrack)

Hey @athar_adv, Action:Pause(ā€œā€) would be cool if you could add it.

1 Like

i cant do action:play outside of outFloor if i try animator.action:play the method doesnt exist

Actions are created with an ID or an Animation Instance.

I actually updated it to accept a list of animation infos {{id: string, weight: number, anim: AnimationTrack?}}, I should update the docs xd

1 Like

Action:GetRandomActionAnim(name):Play(), this is to make it more similar to the Core animations

So we can create action animations in bulk?

No, Action:Create() still needs a name to access the array of animations, will be adding Action:BulkCreate() in the next update along with Action:PauseAll() and docstrings for the modules other than PoseController

1 Like