OsFlash 2 Posted December 13, 2017 Hello Guys, Welcome again to another tutorial. Very simple, when you climb on top of the vehicle it activates and does not let you fall. Client-side: mp.events.add('render', gameplay); function gameplay() { const player = mp.players.local; if(player.isHangingOnToVehicle()){//do not fall off the vehicle player.isRagdoll(); player.setRagdollFlag(2); } } good day to you PS:google traduction 1 2 Share this post Link to post Share on other sites
Bonus 10 Posted December 23, 2017 Why do you use "player.isRagdoll()"? That makes no sense. And are you sure you need setRagdollFlag on every frame? Seems like you would only need to use it once. Share this post Link to post Share on other sites