Advertisement
Guest User

Untitled

a guest
May 26th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. @name Sims
  2. @inputs
  3. @outputs
  4. @persist
  5. @trigger
  6.  
  7. if(first()|duped()) {
  8. holoCreate(1)
  9. holoPos(1,owner():attachmentPos("eyes"))
  10. holoAng(1,owner():attachmentAng("eyes"))
  11. holoParentAttachment(1,owner(),"eyes")
  12. holoAlpha(1,0)
  13.  
  14. holoCreate(2)
  15. holoModel(2,"pyramid")
  16. holoScale(2,vec(1,1,2))
  17. holoPos(2,holoEntity(1):pos()+holoEntity(1):up()*80+holoEntity(1):forward()*0+holoEntity(1):right()*0)
  18. holoAng(2,holoEntity(1):angles())
  19. holoColor(2,vec(0,200,55))
  20. holoMaterial(2,"models/shiny")
  21. holoParent(2,1)
  22. holoShadow(2,0)
  23.  
  24. holoCreate(3)
  25. holoModel(3,"pyramid")
  26. holoScale(3,vec(1,1,2))
  27. holoPos(3,holoEntity(1):pos()+holoEntity(1):up()*56+holoEntity(1):forward()*0+holoEntity(1):right()*0)
  28. holoAng(3,holoEntity(1):toWorld(ang(180,0,0)))
  29. holoColor(3,vec(0,200,55))
  30. holoMaterial(3,"models/shiny")
  31. holoParent(3,1)
  32. holoShadow(3,0)
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement