It says: Animte is not a valid member of Model “Workspace.SilentSuprion”
Script:
local Player = game.Players.LocalPlayer
local Character = Player.Character
Character.Animte.idle.Animation1.AnimationId = "rbxassetid://AnimationIdHere"
I’m not a programmer, but I have something that works.
Put the Animation in the script. Like as a child of the script. Put in the AnimationId the animation you are looking for.
Script:
local animation = script:WaitForChild(‘Animation’)
local humanoid = script.Parent:WaitForChild(‘Humanoid’)
Firstly, you probably mistyped the name of the instance so it couldn’t get it. Check it.
Secondly, it may not have found -if the first condition was invalid- the instance if it wasn’t created when the script runs. So using WaitForChild would be better.
Are you sure this is the name of the animation? Maybe you forgot to add the “a” vowel?
And also, it shouldn’t print like that if you use WaitForChild since it yields until the instance is found. It should have printed something like “infinite yield”.