How to make chat animation?

everything is the same as it was.

Maybe this is just a glitch or something like that?

But anyway thank you for helping me

You need to load the animation.

local plrs = game:GetService("Players")
local anim = Instance.new("Animation")
anim.AnimationId = "rbxassetid://7330128544"

plrs.PlayerAdded:Connect(function(plr)
    plr.CharacterAdded:Connect(function(char)
        local humanoid = char:WaitForChild("Humanoid")
        local loadedAnim = humanoid.Animator:LoadAnimation(anim)
        local charRemoved

        local chatted = plr.Chatted:Connect(function(msg)
            loadedAnim:Play()
        end)

        charRemoved = plr.CharacterRemoving:Connect(function() 
            charRemoved:Disconnect()
            chatted:Disconnect()
        end)
    end)
end)

Still everything is the same as it was.

I put it in ServerScriptService but its still not working

Do you own the animation? If you do, is the game you’re playing the animation in a group game?

What do you mean? Can you explain please
I am just dumb

Were you the one that exported the animation to roblox? Also, is the game you’re working on a group game (owned by a group), or owned by you?

This game only owned by me.
But how this is can influence script?

If you do not own the animation you cannot play the animation in game. You can only play animations that you exported to roblox yourself, thus you can only play animations that you are the owner of.

In the command bar in studio, you can use this command to get the AnimationKeyframes of the animation to put into the animation editor in studio. Look up how to use the animation editor.

game:GetObjects(“rbxassetid://your animation id here”)[1].Parent = workspace

2 Likes

Okay, but anyway script still don’t work.

I really tried to do everything.
or i am just dumb

It is working. The animation that you don’t own is not playing because you don’t own the animation.

And also this is my animation
Here: BlocklandChatAnimation - Roblox


You forgot to do it for sale

Still everything is the same as it was.

If you have 1 account, and you use that 1 account to get an animation, and try to use another account that you own to use that animation from your other account, it won’t work because it’s another account.

Why do people use Alts for the developer forum? In no way is RareDude01 correlated to your current developer forum account (or you signed in with a previous name then name changed and discourse didn’t update it)

You have to use the animation on the same account you’re developing on.

I just changed Scpecific on RareDude01 name.
And this is not my alt

Oh, yeah doing some further checking you haven’t relogged into the forum in a long time. I recommend doing that so people don’t get confused like I just did, so profile picture, name and everything would update.

Anyways back on topic, did you even make the animation the correct AnimationType?