while true do
local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local animate = character:WaitForChild("Animate")
-- Set animation IDs for walk, run, jump, fall, and idle animations
animate.walk.WalkAnim.AnimationId = "http://[Log in to view URL]"
animate.run.RunAnim.AnimationId = "http://[Log in to view URL]"
animate.jump.JumpAnim.AnimationId = "http://[Log in to view URL]"
animate.fall.FallAnim.AnimationId = "http://[Log in to view URL]"
animate.idle.Animation1.AnimationId = "http://[Log in to view URL]" -- Example idle animation 1
animate.idle.Animation2.AnimationId = "http://[Log in to view URL]" -- Example idle animation 2
-- Prevent humanoid from jumping
character.Humanoid.Jump = false
wait(1)
end
To embed this project on your website, copy the following code and paste it into your website's HTML: