Help with sanitized id!

file:///C:/Users/theac/Pictures/Screenshot%202023-10-09%20175625.png
It is showing sanitized id so here is my script its the hold anim that isnt working.
local Player = game.Players.LocalPlayer
local Tool = script.Parent
local Script = script
local Animation = Tool:WaitForChild(“Anim”)
local HoldAnim = Tool:WaitForChild(“HoldAnim”)
local Character = Player.Character or Player.CharacterAdded:Wait()
local Track = Character:FindFirstChildOfClass(“Humanoid”):LoadAnimation(Animation)
local Track2 = Character:FindFirstChildOfClass(“Humanoid”):LoadAnimation(HoldAnim) – Hold anim

Tool.Equipped:Connect(function()
Track2:Play() – Hold anim
end)

Tool.Activated:Connect(function()
Track:Play()
end)

Tool.Unequipped:Connect(function()
Track2:Stop()-- Same with this
end)

1 Like

Don’t see the picture, do you mean the output is saying animation wont load because its a sanitized ID, since im replying an hour late, it should be working now, because it just means the ID is under moderation (im pretty sure)

Edit: After reading through some more, multiple times it has been fixed and then reproduced. See if it now works on your end, otherwise, make bug report (if it doesnt already exist!!!) and wait for it to get fixed

1 Like

Thank you this helped so much!

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.