Is it possible to change default sit animation on driver seat

Is it possible?

I would like to have a custom sit animation for my vehicle driver seat, I already have made the animation but would like to know how to change the default one to the custom one.

2 Likes

If I understood you right,
you want to have a ‘sitting animation’ ?

You could load the animation when the player sits on the vehicle seat.

1 Like

this could help you

Yes you can do it with an animation script
first,
sit
find animation script in your character model then
sit2
and select the “sitAnim”
sit3
change the animation Id
you can do with a script
result
The result

1 Like

This was the solution which worked! Thanks.

1 Like

you’re welcome I happy for helping people

local Game = game
local Players = Game:GetService("Players")

local function OnPlayerAdded(Player)
	local function OnCharacterAdded(Character)
		local Animate = Character:FindFirstChild("Animate") or Character:WaitForChild("Animate")
		local SitValue = Animate:FindFirstChild("sit") or Animate:WaitForChild("sit")
		local SitAnimation = SitValue:FindFirstChild("SitAnim") or SitValue:WaitForChild("SitAnim")
		SitAnimation.AnimationId = "rbxassetid://0" --Change '0' for the desired animation's ID.
	end
	
	Player.CharacterAdded:Connect(OnCharacterAdded)
end

Players.PlayerAdded:Connect(OnPlayerAdded)

Just providing the script to achieve this.

2 Likes