What does it mean, "Unable to cast value to Object"?
Asked by
5 years ago Edited 5 years ago
I am trying to load an animation, and store it in a variable. I have looked at the roblox api, and based on what I see on that webpage, my code should work. My code is here:
1 | game.ReplicatedStorage.RemoteEvents 2. Spells.ignis.OnServerEvent:Connect( function (player) |
3 | local loadedAnimation = player.Character.Humanoid:LoadAnimation(game.ReplicatedStorage.MelAnim.INC.AnimationId) |
As you can see, this should work (the directories are correct, but you will just have to take my word for that).
If there is something that I am missing, I would appreciate being told so. Otherwise, I am out of luck.
Happy scripting, and all help is welcomed.
Edit: Does the same thing if I combine the two lines:
1 | game.ReplicatedStorage.RemoteEvents 2. Spells.ignis.OnServerEvent:Connect( function (player) |
3 | player.Character.Humanoid:LoadAnimation(game.ReplicatedStorage.MelAnim.INC.AnimationId):Play() |