Advertisement
mr2meows

pilk

Jul 3rd, 2022
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.56 KB | None | 0 0
  1. -- Objects To Lua Make By HairBaconGamming --
  2. local Module_Scripts = {}
  3. local Chocolate_Milk = Instance.new("Tool")
  4. local Handle = Instance.new("Part")
  5. local Mesh = Instance.new("SpecialMesh")
  6. local DrinkSound = Instance.new("Sound")
  7. local RightGripAttachment = Instance.new("Attachment")
  8. local OpenSound = Instance.new("Sound")
  9. local BloxyColaScript = Instance.new("Script")
  10.  
  11. -- Properties --
  12.  
  13. Chocolate_Milk.Grip = CFrame.new(0.25, -0.200000003, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  14. Chocolate_Milk.GripForward = Vector3.new(-1, 0, -0)
  15. Chocolate_Milk.GripPos = Vector3.new(0.25, -0.20000000298023224, 0)
  16. Chocolate_Milk.GripRight = Vector3.new(0, 0, -1)
  17. Chocolate_Milk.Name = [[Chocolate Milk]]
  18. Chocolate_Milk.Parent = owner.Backpack
  19. Chocolate_Milk.TextureId = [[http://www.roblox.com/asset/?id=21384819]]
  20.  
  21. Handle.BottomSurface = Enum.SurfaceType.Smooth
  22. Handle.BrickColor = BrickColor.new([[Mid gray]])
  23. Handle.CFrame = CFrame.new(25.562252, 1.0898546, -11.5000267, -0.999999523, -9.04471017e-06, 2.48451997e-05, -8.99407678e-06, 1, -1.47936089e-05, -2.47880726e-05, -1.48334029e-05, -1.00000012)
  24. Handle.Color = Color3.new(0.803922, 0.803922, 0.803922)
  25. Handle.Locked = true
  26. Handle.Name = [[Handle]]
  27. Handle.Orientation = Vector3.new(0, 180, 0)
  28. Handle.Parent = Chocolate_Milk
  29. Handle.Position = Vector3.new(25.562252044677734, 1.0898545980453491, -11.50002670288086)
  30. Handle.Rotation = Vector3.new(180, 0, 180)
  31. Handle.Size = Vector3.new(1, 1.2000000476837158, 1)
  32. Handle.TopSurface = Enum.SurfaceType.Smooth
  33.  
  34. Mesh.MeshId = [[http://www.roblox.com/asset/?id=21382712]]
  35. Mesh.MeshType = Enum.MeshType.FileMesh
  36. Mesh.Parent = Handle
  37. Mesh.Scale = Vector3.new(1.2000000476837158, 1.2000000476837158, 1.2000000476837158)
  38. Mesh.TextureId = [[http://www.roblox.com/asset/?id=21382687]]
  39.  
  40. DrinkSound.Name = [[DrinkSound]]
  41. DrinkSound.Parent = Handle
  42. DrinkSound.SoundId = [[http://www.roblox.com/asset/?id=21391849]]
  43.  
  44. RightGripAttachment.CFrame = CFrame.new(0.5, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  45. RightGripAttachment.Name = [[RightGripAttachment]]
  46. RightGripAttachment.Parent = Handle
  47. RightGripAttachment.Position = Vector3.new(0.5, 0, 0)
  48.  
  49. OpenSound.Name = [[OpenSound]]
  50. OpenSound.Parent = Handle
  51. OpenSound.SoundId = [[http://www.roblox.com/asset/?id=21391806]]
  52.  
  53. function BloxyColaScript_ScriptfakeXD()
  54.  
  55. local script = Instance.new("Script",Chocolate_Milk)
  56. BloxyColaScript = script
  57. script.Name = [[BloxyColaScript]]
  58. local require_fake = require
  59. local require = function(Object)
  60. local functiom = Module_Scripts[Object]
  61. if functiom then
  62. return functiom()
  63. end
  64. return require_fake(Object)
  65. end
  66.  
  67. local Tool = script.Parent;
  68.  
  69. enabled = true
  70.  
  71.  
  72.  
  73.  
  74. function onActivated()
  75. if not enabled then
  76. return
  77. end
  78.  
  79. enabled = false
  80. Tool.GripForward = Vector3.new(-1, 0, -0)
  81. Tool.GripPos = Vector3.new(-.2, -0, -1.5)
  82. Tool.GripRight = Vector3.new(0, 0, -1)
  83. Tool.GripUp = Vector3.new(0, 1, 0)
  84.  
  85.  
  86. Tool.Handle.DrinkSound:Play()
  87.  
  88. wait(1.3)
  89.  
  90. local h = Tool.Parent:FindFirstChild("Humanoid")
  91. if (h ~= nil) then
  92. if (h.MaxHealth > h.Health + 5) then
  93. h.Health = h.Health + 5
  94. else
  95. h.Health = h.MaxHealth
  96. end
  97. end
  98.  
  99. Tool.GripForward = Vector3.new(-1, 0, -0)
  100. Tool.GripPos = Vector3.new(0.25, 0, 0)
  101. Tool.GripRight = Vector3.new(0, 0, -1)
  102. Tool.GripUp = Vector3.new(0,1,0)
  103.  
  104. enabled = true
  105.  
  106. end
  107.  
  108. function onEquipped()
  109. Tool.Handle.OpenSound:play()
  110. end
  111.  
  112. script.Parent.Activated:connect(onActivated)
  113. script.Parent.Equipped:connect(onEquipped)
  114.  
  115.  
  116. end
  117. coroutine.wrap(BloxyColaScript_ScriptfakeXD)()
  118.  
  119.  
  120. -- End --
  121. -- Thank for using --
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement