Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I make an animation for individual seats, like if I had a bed and a chair?

Asked by
7zjh 146
4 years ago

--here is the script i have so far

local Players = game:GetService("Players") local SitAnimID = 4908653065

Players.PlayerAdded:Connect(function(Player) Player.CharacterAdded:Connect(function(Character) local Animation = Character:FindFirstChild('SitAnim', true) Animation.AnimationId = ('rbxassetid://%s'):format(SitAnimID) end) end)

-- I made a bed animation as if he launched himself in the bed (r6); porblem is, I want it to apply to only one seat object

Answer this question