Advertisement
ynhhoJ

Untitled

Dec 8th, 2019
414
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. let localPlayer = mp.players.local;
  2. let Ped = mp.peds.new(mp.game.joaat('MP_F_Freemode_01'), new mp.Vector3( -11.002, 22.0757, 71.5), 270.0, (streamPed) => {
  3.     // Ped Streamed
  4.     streamPed.setAlpha(0);
  5.     streamPed.freezePosition(false);
  6. }, localPlayer.dimension);
  7.      
  8. let Veh = mp.vehicles.new(mp.game.joaat("turismor"), new mp.Vector3(-9.126, 27.068, 72),
  9.     {
  10.         numberPlate: "ADMIN",
  11.         color: [[255, 0, 0],[255,0,0]]
  12.     });
  13.      
  14. Ped.taskEnterVehicle(Veh.handle, 10000, -1, 1, 1, 0);
  15. Ped.taskVehicleDriveToCoord(Veh.handle, 28.936, 7.346, 70.05, 30, 1, Veh.model, 786468, 2, 1);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement