Skip to content

Instantly share code, notes, and snippets.

View SamShanks1's full-sized avatar

Sam Shanks SamShanks1

View GitHub Profile
@SamShanks1
SamShanks1 / knockout.lua
Created October 12, 2022 21:48
FiveM Disable stealth one punch knockout
while true do
if GetPedStealthMovement(PlayerPedId()) then
SetPedStealthMovement(PlayerPedId(), 0)
end
wait(1)
end