Advertisement
CashRP2

Pick Syntax Guide

Jan 7th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. foobar
  2. Matches all instances with the name foobar.
  3.  
  4. Alice, Bob
  5. Matches all instances with the name Alice, and all instances with the name Bob.
  6.  
  7. "Smooth Block Model", Part
  8. Matches all instances with the name Smooth Block Model, and all instances with the name Part.
  9.  
  10. .BasePart
  11. Matches all BasePart instances
  12.  
  13. .Lighting > .Sky
  14. Matches all Sky instances wahich are children of Lighting.
  15.  
  16. .Players > Elttob.Player > .Backpack > Slingshot.Tool
  17. Matches all tools named Slingshot in the backpack of the player named Elttob.
  18.  
  19. *
  20. Matches all instances.
  21.  
  22. #BlueTag
  23. Matches all instances with the tag BlueTag (see: CollectionService)
  24.  
  25. Alice > {Bob} > Charlie
  26. Matches all instances with the name Charlie which are children of Bob and Alice, but returns the instances of Bob instead.
  27.  
  28. Workspace > {*} > .Decal
  29. Matches all instances in Workspace which have a decal inside them.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement