When i play my game in studio animations work, when i play the game through roblox website it doesent work, how to solve the issue? Here’s some screenshots
To add on to that, what you can do instead is downloading the animations and reuploading them to Roblox. If you don’t own them, try searching in the models section of the toolbox for animations. I wouldn’t go through this trouble, so I would make my own animations using the Animation Editor in the plugins section of studio.
If so here is the script (There is alot of ways but by far this is the easiest)
game.Players.PlayerAdded:Connect(function(Player) -- A Player joined.
Player.CharacterAdded:Connect(function(Character) -- His Character was added
-- here set the Animations example:
Character.Animate.walk.WalkAnim.AnimationId = "rbxassetid://" -- add the Id number after the //
Character.Animate.jump.JumpAnim.AnimationId = "rbxassetid://" -- add the Id number after the //
end)
end)