How do I change the default animations?

I use Load Catalog Items to insert Animations into the Studio place file. However you cannot insert the entire packs. You need to do each individual one which is tedious at times.

To get them to work is a different story, what I do is I add the animations I want to play in the character in a folder in ReplicatedStorage.
Like this:
exam

I then take the ‘Animate’ LocalScript and add these to the beginning of the script.

for _, ani in pairs (script:GetChildren()) do
	ani:Destroy()
end
local Newanimations = game:GetService("ReplicatedStorage"):WaitForChild("Animation"):GetChildren()
for _, NewAni in pairs (Newanimations) do
	NewAni:Clone().Parent = script
end

Reason for this is when the character loads it replaces all the animations parented to the ‘Animate’ LocalScript to the ones the player has equipped on Roblox (If Any).
This should hopefully work for you as it does for me.

4 Likes

You need to click on run then click load!

2 Likes

He did click on it then load. If he didn’t it wouldn’t have said “Run” just above save.

1 Like