Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. //Client Packages
  2.  
  3. let marker = mp.markers.new(0, new mp.Vector3(294.387, -1448.783, 29.967), 1);
  4. mp.keys.bind(0x71, false, () =>
  5. {
  6. 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)
  7. {
  8. mp.world.requestIpl("Coroner_Int_On");
  9. mp.events.callRemote("275.446, -1361.11, 24.5378");
  10. }
  11. });
  12.  
  13. //Packages
  14.  
  15. mp.events.add("teleportInterior", (player) => {
  16. player.position = new mp.Vector3(294.387, -1448.783, 29.967);
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement