Advertisement
Dorex

Untitled

Aug 16th, 2023
1,812
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. vector startPosition;
  3.  
  4. default
  5. {
  6.     state_entry()
  7.     {
  8.         llSetPhysicsMaterial( GRAVITY_MULTIPLIER, 0.0001 ,0.0, 0.0, 0.0 );
  9.         startPosition = llGetPos();
  10.         llSetTimerEvent(5);
  11.     }
  12.    
  13.     timer()
  14.     {
  15.         startPosition.z +=1;
  16.         llMoveToTarget(startPosition, 1.0);
  17.         llSetTimerEvent(0);
  18.      
  19.     }
  20.  
  21. }
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement