Movement animation

Anyone knows if its possible to disable the turning around animation of player
I want the players move instantly without the leg animation delay
Lets say if you aim your weapon and move the mouse to the right the player will slide along with mouse movement without actually moving the legs, like in older games

possible to set player rotation instantly by mouse movement like in noclip?

nevermind i got it by setting this up

			if IsControlPressed(0, 34) then
				SetEntityHeading(playerPed, GetEntityHeading(playerPed) + 8.0)
			end
			if IsControlPressed(0, 35) then
				SetEntityHeading(playerPed, GetEntityHeading(playerPed) - 8.0)
			end
1 Like