Advertisement
aksels101

Untitled

Aug 12th, 2016
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. me = game.Players.princesswolf222
  2. if script.Parent.className ~= "HopperBin" then
  3. h = Instance.new("HopperBin",me.Backpack)
  4. h.Name = "LAZOR"
  5. script.Parent = h
  6. end
  7.  
  8. bin = script.Parent
  9.  
  10. function prop(part, parent, collide, tran, ref, x, y, z, color)
  11. part.Parent = parent
  12. part.formFactor = 0
  13. part.CanCollide = collide
  14. part.Transparency = tran
  15. part.Reflectance = ref
  16. part.Size = Vector3.new(x,y,z)
  17. part.BrickColor = BrickColor.new(color)
  18. part.TopSurface = 0
  19. part.BottomSurface = 0
  20. part:BreakJoints()
  21. end
  22.  
  23. function weld(w, p, p0, p1, a, b, c, x, y, z)
  24. w.Parent = p
  25. w.Part0 = p0
  26. w.Part1 = p1
  27. w.C1 = CFrame.fromEulerAnglesXYZ(a,b,c) * CFrame.new(x,y,z)
  28. end
  29.  
  30. function mesh(mesh, parent, x, y, z, type)
  31. mesh.Parent = parent
  32. mesh.Scale = Vector3.new(x, y, z)
  33. mesh.MeshType = type
  34. end
  35.  
  36. using = false
  37.  
  38. sound = Instance.new("Sound",princesswolf222.Character.Head)
  39. sound.Volume = 0.6
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement