Dances and join game Filter for shr

Hi,
I am looking for a way for the the Model statue to do dances. The main ones I am looking for is black flip. I am also looking for something that pops up when the shrs join game. You can dm me on discord or reply on here whatever you prefer.
Discord: ant is typing…#5142

Scripting support isn’t the place to request entire scripts, but you can read about how to make animations here:
https://developer.roblox.com/en-us/api-reference/class/Animation

Here’s a random tutorial I found for how to make an animation:

If everything is rigged property then you can use a script like this to load the animation:

Model = script.Parent
Humanoid = Model.Humanoid
Animation = Instance.new("Animation",)
Animation.AnimationId = "rbxassetid://507771019"

AnimationTrack = Humanoid:LoadAnimation(Animation)
AnimationTrack:Play()

Put this inside the character model as a regular script (not a LocalScript).
Change the numbers to the ID of whatever animation you make.
image
Make sure you enable looping inside the animation you create, if you want it to loop.

1 Like