I'm not the best at scripting, so my answer may be wrong, but as long as you have the ID of the animations you made, this script should (hopefully) work for you.
01 | local player = game.Players.LocalPlayer |
02 | local Mouse = player:GetMouse() |
03 | local Char = player.Character |
04 | local Humanoid = Char:WaitForChild( "Humanoid" ) |
08 | local animations = { 1877306614 , 1877291193 , 01895620990 } |
10 | local function Animation(plr) |
11 | local animation = Instance.new( "Animation" ) |
12 | local picked = math.random( 1 , #animations) |
14 | local animTrack = Humanoid:LoadAnimation(animation) |
18 | Mouse.Button 1 Down:connect( function () |
19 | print ( "PlayAnimation" ) |
This script should play one of your animations at random when you click. You might want to add a debounce script or something like that to prevent others from playing the animations too quickly.