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.
1 Like
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
2 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?
2 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
2 Likes
Ok thanks for the help. this will help and if anything goes wrong I will try again
1 Like