I have a script that makes it where if u tap ur screen with a item equipped it plays a animation of u holding the item and moving it example if u tap ur screen an animation of u swinging a sword around happens but that same animation over and over gets boring so do u know a way it plays different animations I made instead of the same one btw Insert a animation thing inside the tool with the plus
You could put several different animations into a folder then randomly pick through them using math.random()
for example:
local animationsInFolder = animationFolder:GetChildren() -- animationFolder is a folder where the Animations are being stored
local RandomAnimation = animationsInFolder [math.random(1,#animationsInFolder )] -- this basically just picks 1 of the many animations in the folder.
local Animation = humanoid:FindFirstChild("Animator"):LoadAnimation(RandomAnimation)
Animation:Play()