i got bug that make werid pose when i hold gear and seat, idk how to fix does anybody know how to fix this werid one?
Hold Gear
Without Gear
Here is Script:
seat = script.Parent
function added(child)
if (child.className=="Weld") then
human = child.part1.Parent:FindFirstChild("Humanoid")
if human ~= nil then
anim = human:LoadAnimation(seat.sitanim)
anim:Play()
end
end
end
function removed(child2)
if anim ~= nil then
anim:Stop()
anim:Remove()
end
end
seat.ChildAdded:connect(added)
seat.ChildRemoved:connect(removed)
Tell me What should i do, Change Idle?, Change Scripts?
thank you Ya’ll!