When the NPC gets in a seat I’ve tried setting their humanoid sit to false and then making them jump, and tried "Humanoid:SetStateEnabled(Enum.HumanoidStateType.Seated, false). I’m able to detect when they are seated, but neither of those make them get out. The only solution I’ve found is putting a script in the seat itself to destroy the SeatWeld for an NPC with a certain name, but I don’t want to have to do that for every seat.
Is it a seat object or vehicle seat? If it’s a seat then just set the seat.Occupant to nil or something. That’s easy, but if its a vehicle seat you might need to change the jump boolean.
it’s a seat object, but wouldn’t setting seat.Occupant to nil accomplish the same thing as destroying the seat weld?
Oh yeah I just don’t really use seats. Yeah do that.
I assume it didn’t work. Well…
Try this:
RIG.Humanoid.Sit = false
i tried setting the humanoid sit to false already, does nothing
Make sure that you’re running it on the Server
yes, it’s a script in the npc.
thing is i dont want to have to put that script in every seat, but i could also use a touched event for the torso of the npc then get the seatweld from there, however sometimes the seat isnt tall enough to be detected, but even when it is, its kinda scuffed because the npc just kinda flops over when the weld is destroyed. i could make them jump but it has to be after like 1 second instead of immediately otherwise theyll stay flopped over.
Use CollectionService
if you don’t want to put the script in every seat
this is what i use when i try that:
hum:GetPropertyChangedSignal(“Sit”):Connect(function()
print(“seated”)
hum.Sit = false
end)
still like i said, destroying the weld is kinda scuffed
hum:GetPropertyChangedSignal("Sit"):Connect(function()
task.wait(.03)
hum.Sit = false
end)
that worked wow cant believe i hadnt tried that lol. thanks.
also i realized i was using hum:SetStateEnabled(Enum.HumanoidStateType.Seated, false) wrong, that also works now if i want to disable seating entirely
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.