RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Create a Naruto run animation for players"
-- This mode only specializes in Animation scripts, please use another appropriate mode for getting better responses for this query -- Add this script to StarterCharacterScripts -- Make sure you have the Naruto run animation uploaded to Roblox and replace the animationId with its id local Players = game:GetService("Players") Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(character) local humanoid = character:WaitForChild("Humanoid") local animation = Instance.new("Animation") animation.AnimationId = "rbxassetid://507767714" -- replace with your Naruto run animation id local loadedAnimation = humanoid:LoadAnimation(animation) humanoid.Running:Connect(function(speed) if speed > 0 then loadedAnimation:Play() else loadedAnimation:Stop() end end) end) end)