I'm trying to figure out how to make a seat that will have the players arms out in the direction I choose, like a sitting T-pose for example. And if there is any way I could move the legs too, that would be great.
I have stuff here that may work
To get the info for the animation, go to roblox.com/develop > Animations. Find your T-Pose animation. Look in the address bar at the top. You will see about 10 numbers or more. Copy that, we're gonna need to use it for the next step.
Please insert this Server Script (Script) into game.StarterPlayer.StarterCharacterScripts:
script.Parent.Animate.sit.SitAnim.AnimationId = "rbxassetid://0000000000" --animationid
This will make all seats have the T-Pose animation. If just one seat, you need to use this script in the seat:
local currentAnimId = char.Animate.sit.SitAnim.AnimationId function touch(hit) char = hit.Parent hit.Parent.Animate.sit.SitAnim.AnimationId = "rbxassetid:/0000000000" --animid wait(1) hit.Parent.Animate.sit.SitAnim.AnimationId = currentAnimId end script.Parent.Touched:Connect(touch)
b_mni
try this:
1: click test
2: while the game is running go to the explorer window and look for a your character
3: open up your character model and find the script called Animate
4: copy the script
5: stop test
6: in the explorer, go to StarterPlayer --> StarterCharacterScripts
7: right click StarterCharacterScripts and select PasteInto
8: inside Animate look for the child called sit or sitting
9: replace the animation for sit with you t-pose animation
10: test again and see if it works