Advertisement
aksels101

Untitled

Aug 12th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. me = game.Players.princesswolf222
  2. gs = 25
  3.  
  4. function prop(part, parent, collide, tran, ref, x, y, z, color, anchor, form)
  5. part.Parent = parent
  6. part.formFactor = form
  7. part.CanCollide = collide
  8. part.Transparency = tran
  9. part.Reflectance = ref
  10. part.Size = Vector3.new(x,y,z)
  11. part.BrickColor = BrickColor.new(color)
  12. part.TopSurface = 0
  13. part.BottomSurface = 0
  14. part.Anchored = anchor
  15. part.Locked = true
  16. part:BreakJoints()
  17. end
  18.  
  19. function mesh(mesh, parent, x, y, z, type)
  20. mesh.Parent = parent
  21. mesh.Scale = Vector3.new(x, y, z)
  22. mesh.MeshType = type
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement