Advertisement
Guest User

Terrorism Mod

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