Advertisement
Rendflex

Untitled

Aug 13th, 2012
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. spawnBody()
  2. {
  3.  
  4. body = spawn("script_model", self.origin);
  5. body setmodel(self.model);
  6. body.angles = self.angles;
  7. body hidepart("back_mid");
  8. body2 = spawn("script_model", self.origin + (0, 0, 50));
  9. body2 setmodel(self.model);
  10. body2.angles = self.angles;
  11. body2 hidepart("j_hip_le");
  12. body2 linkto(body, "tag_origin", (0, 0, 0), (0, 0, 0));
  13.  
  14.  
  15. body scriptmodelplayanim("pb_combatrun_forward_loop");
  16. body2 scriptmodelplayanim("pt_stand_shoot");
  17.  
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement