Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. //Client Packages
  2. let marker = mp.markers.new(0, new mp.Vector3(294.387, -1448.783, 29.967), 1);
  3. mp.keys.bind(0x45, false, () =>
  4. {
  5. if(mp.game.system.vdist(mp.players.local.position.x, mp.players.local.position.y, mp.players.local.position.z, marker.position.x, marker.position.y, marker.position.z) < 2.5)
  6. {
  7. mp.world.requestIpl("Coroner_Int_On");
  8. mp.events.callRemote("275.446, -1361.11, 24.5378");
  9. }
  10. });
  11.  
  12.  
  13. //Packages
  14. mp.events.add("275.446, -1361.11, 24.5378", (player) => {
  15. player.position = new mp.Vector3(0, 0, 0);
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement