Advertisement
kemperrs

Untitled

Apr 28th, 2020
833
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const blip = mp.blips.new(5, new mp.Vector3(0, 0, 0), {
  2.   alpha: 175,
  3.   color,
  4.   name: 'zone',
  5.   dimension: 0,
  6.   scale: 1,
  7.   shortRange: true
  8. });
  9.  
  10. setTimeout(() => {
  11.   blip.setAlpha(150); // it works
  12.  
  13.   setTimeout(() => {
  14.     blip.radius = 50; // reseted alpha to 255
  15.     blip.setAlpha(150); // not works
  16.   }, 5000);
  17. }, 5000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement