Advertisement
Guest User

Terrorism Mod

a guest
Jul 19th, 2015
371
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. -- Allahu Akbar by LogicalLogistics, v1
  2. local allahu = {}
  3.  
  4. function allahu.tick(local playerID - PLAYER.PLAYER_ID()
  5. local currentVehicle = PED.GET_VEHICLE_PED_IS_USING(playerID)
  6. local vehicleSpeed = ENTITY.GET_ENTITY_SPEED(currentVehicle)
  7. local player = PLAYER.GET_PLAYER_PED(playerID)
  8. local playerPedID = PLAYER.PLAYER_PED_ID(player)
  9. if get_key_pressed(46) then
  10. PLAYER.SET_PLAYER_INVINCIBLE(player, true)
  11. wait(1)
  12. VEHICLE.EXPLODE_VEHICLE(currentVehicle)
  13. wait(3)
  14. PLAYER.SET_PLAYER_INVINCIBLE(player, false)
  15. PLAYER.SET_PLAYER_WANTED_LEVEL(player, 3, true)
  16. end
  17. end);
  18.  
  19. return allahu
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement