Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Citizen.CreateThread(function()
- local dict = "missfra1mcs_2_crew_react"
- RequestAnimDict(dict)
- while not HasAnimDictLoaded(dict) do
- Citizen.Wait(100)
- end
- local handsup = false
- while true do
- Citizen.Wait(0)
- if IsControlJustReleased(1, 323) then --Start holding X
- if not handsup then
- TaskPlayAnim(GetPlayerPed(-1), dict, "handsup_standing_base", 8.0, 8.0, -1, 50, 0, false, false, false)
- handsup = true
- else
- handsup = false
- ClearPedTasks(GetPlayerPed(-1))
- end
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement