This is the error:
Failed to load animation with sanitized ID rbxassetid://75901449464023: AnimationClip loaded is not valid. (x5)
- I have my ID and the animation is owned by me
- The game is set to R6
- The animation is made on an R6 dummy
- The animtion is looped
- the animations priority is set to movement
I copy the animation script from test play and put it in StarterCharacterScripts and i then change walk ID to my ID
here is the code:
-- humanoidAnimatePlayEmote.lua
local Figure = script.Parent
local Torso = Figure:WaitForChild("Torso")
local RightShoulder = Torso:WaitForChild("Right Shoulder")
local LeftShoulder = Torso:WaitForChild("Left Shoulder")
local RightHip = Torso:WaitForChild("Right Hip")
local LeftHip = Torso:WaitForChild("Left Hip")
local Neck = Torso:WaitForChild("Neck")
local Humanoid = Figure:WaitForChild("Humanoid")
local pose = "Standing"
local EMOTE_TRANSITION_TIME = 0.1
local userAnimateScaleRunSuccess, userAnimateScaleRunValue = pcall(function() return UserSettings():IsUserFeatureEnabled("UserAnimateScaleRun") end)
local userAnimateScaleRun = userAnimateScaleRunSuccess and userAnimateScaleRunValue
local function getRigScale()
if userAnimateScaleRun then
return Figure:GetScale()
else
return 1
end
end
local currentAnim = ""
local currentAnimInstance = nil
local currentAnimTrack = nil
local currentAnimKeyframeHandler = nil
local currentAnimSpeed = 1.0
local animTable = {}
local animNames = {
idle = {
{ id = "http:/www.roblox.com/asset/?id=180435571", weight = 9 },
{ id = "http:/www.roblox.com/asset/?id=180435792", weight = 1 }
},
walk = {
{ id = "http:/www.roblox.com/asset/?id=75901449464024", weight = 10 }
},
Not the whole code ofc
HELP ME PLEASE! Is my studio bugged?
** You are now Level 1! **