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
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.
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
?