RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"now make it randomly choose one"
-- server script local animations = { "rbxassetid://AnimationID1", "rbxassetid://AnimationID2", "rbxassetid://AnimationID3", -- Add more animation IDs as needed } game.Players.PlayerAdded:Connect(function(Player) Player.CharacterAdded:Connect(function(Character) local randomAnimationId = animations[math.random(1, #animations)] Character.Animate.jump.JumpAnim.AnimationId = randomAnimationId end) end)