I need help with making a seat that triggers pose like in vibe games

I have been trying to figure out how to make seats that trigger and seat animation like the one’s you see in vibe games. I’m not really a scripter so I need help here. Here is one pose I made so far. Capture

2 Likes

You could try something simple like this:

-- in a script, located in StarterCharacterScripts. Place your Animation inside of the script
local humanoid = Script.Parent:WaitForChild("Humanoid")
local animation = humanoid:LoadAnimation(Script:WaitForChildWhichIsA("Animation"))
humanoid.Seated:Connect(function()
    animation:Play()
end
humanoid.Jumping:Connect(function()
    animation:Stop()
end
3 Likes

Im trying to make a seating pose like in vibe games do you know how I can use this script for a seating pose? in anyway?

3 Likes

You can make an animation using Roblox’s animation plugin, uploading the animation, copying the ID, pasting the ID in an animation object, and putting the animation object inside of the script I gave you

3 Likes

Ok thanks for the help. this will help and if anything goes wrong I will try again

2 Likes

Alrighty, also if you need some help with the animating process here is a tutorial by AlvinBlox:

4 Likes