Advertisement
HowAreYu

MINER'S HAVEN CRATES

Oct 28th, 2018
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.23 KB | None | 0 0
  1. -- Objects
  2.  
  3. local Miner = Instance.new("ScreenGui")
  4. local Main = Instance.new("Frame")
  5. local Value = Instance.new("TextBox")
  6. local Clover = Instance.new("TextButton")
  7. local TwitchPoints = Instance.new("TextButton")
  8. local Walk = Instance.new("TextButton")
  9. local Jump = Instance.new("TextButton")
  10. local AutoCrates = Instance.new("TextButton")
  11. local MaskedMan = Instance.new("TextButton")
  12.  
  13. -- Properties
  14.  
  15. Miner.Name = "Miner"
  16. Miner.Parent = game.Players.LocalPlayer.PlayerGui
  17. Miner.ResetOnSpawn = false
  18.  
  19. Main.Name = "Main"
  20. Main.Parent = Miner
  21. Main.Active = true
  22. Main.BackgroundColor3 = Color3.new(0, 0, 0)
  23. Main.BackgroundTransparency = 0.5
  24. Main.BorderColor3 = Color3.new(1, 1, 1)
  25. Main.BorderSizePixel = 2
  26. Main.Draggable = true
  27. Main.Position = UDim2.new(0, 0, 0.349999994, 0)
  28. Main.Selectable = true
  29. Main.Size = UDim2.new(0, 215, 0, 140)
  30.  
  31. Value.Name = "Value"
  32. Value.Parent = Main
  33. Value.BackgroundColor3 = Color3.new(0, 0, 0)
  34. Value.BackgroundTransparency = 0.69999998807907
  35. Value.BorderColor3 = Color3.new(1, 1, 1)
  36. Value.BorderSizePixel = 0
  37. Value.Position = UDim2.new(0, 5, 0, 110)
  38. Value.Size = UDim2.new(0, 205, 0, 25)
  39. Value.Font = Enum.Font.SourceSansBold
  40. Value.FontSize = Enum.FontSize.Size18
  41. Value.Text = "Value"
  42. Value.TextColor3 = Color3.new(1, 1, 1)
  43. Value.TextSize = 18
  44.  
  45. Clover.Name = "Clover"
  46. Clover.Parent = Main
  47. Clover.BackgroundColor3 = Color3.new(0, 0, 0)
  48. Clover.BackgroundTransparency = 0.69999998807907
  49. Clover.BorderColor3 = Color3.new(1, 1, 1)
  50. Clover.BorderSizePixel = 0
  51. Clover.Position = UDim2.new(0, 5, 0, 5)
  52. Clover.Size = UDim2.new(0, 100, 0, 25)
  53. Clover.Font = Enum.Font.SourceSansBold
  54. Clover.FontSize = Enum.FontSize.Size18
  55. Clover.Text = "Clovers"
  56. Clover.TextColor3 = Color3.new(1, 1, 1)
  57. Clover.TextSize = 18
  58. Clover.MouseButton1Click:connect(function()
  59. game.Players.LocalPlayer.Clovers.Value = game.Players.LocalPlayer.Clovers.Value + Value.Text
  60. end)
  61.  
  62. TwitchPoints.Name = "TwitchPoints"
  63. TwitchPoints.Parent = Main
  64. TwitchPoints.BackgroundColor3 = Color3.new(0, 0, 0)
  65. TwitchPoints.BackgroundTransparency = 0.69999998807907
  66. TwitchPoints.BorderColor3 = Color3.new(1, 1, 1)
  67. TwitchPoints.BorderSizePixel = 0
  68. TwitchPoints.Position = UDim2.new(0, 110, 0, 5)
  69. TwitchPoints.Size = UDim2.new(0, 100, 0, 25)
  70. TwitchPoints.Font = Enum.Font.SourceSansBold
  71. TwitchPoints.FontSize = Enum.FontSize.Size18
  72. TwitchPoints.Text = "Twitch Points"
  73. TwitchPoints.TextColor3 = Color3.new(1, 1, 1)
  74. TwitchPoints.TextSize = 18
  75. TwitchPoints.MouseButton1Click:connect(function()
  76. game.Players.LocalPlayer.TwitchPoints.Value = game.Players.LocalPlayer.TwitchPoints.Value + Value.Text
  77. end)
  78.  
  79. Walk.Name = "Walk"
  80. Walk.Parent = Main
  81. Walk.BackgroundColor3 = Color3.new(0, 0, 0)
  82. Walk.BackgroundTransparency = 0.69999998807907
  83. Walk.BorderColor3 = Color3.new(1, 1, 1)
  84. Walk.BorderSizePixel = 0
  85. Walk.Position = UDim2.new(0, 5, 0, 65)
  86. Walk.Size = UDim2.new(0, 100, 0, 25)
  87. Walk.Font = Enum.Font.SourceSansBold
  88. Walk.FontSize = Enum.FontSize.Size18
  89. Walk.Text = "WalkSpeed"
  90. Walk.TextColor3 = Color3.new(1, 1, 1)
  91. Walk.TextSize = 18
  92. Walk.MouseButton1Click:connect(function()
  93. player = game.Players.LocalPlayer
  94. player.Character.Humanoid.WalkSpeed = Value.Text
  95. end)
  96.  
  97. Jump.Name = "Jump"
  98. Jump.Parent = Main
  99. Jump.BackgroundColor3 = Color3.new(0, 0, 0)
  100. Jump.BackgroundTransparency = 0.69999998807907
  101. Jump.BorderColor3 = Color3.new(1, 1, 1)
  102. Jump.BorderSizePixel = 0
  103. Jump.Position = UDim2.new(0, 110, 0, 65)
  104. Jump.Size = UDim2.new(0, 100, 0, 25)
  105. Jump.Font = Enum.Font.SourceSansBold
  106. Jump.FontSize = Enum.FontSize.Size18
  107. Jump.Text = "JumpPower"
  108. Jump.TextColor3 = Color3.new(1, 1, 1)
  109. Jump.TextSize = 18
  110. Jump.MouseButton1Click:connect(function()
  111. player = game.Players.LocalPlayer
  112. player.Character.Humanoid.JumpPower = Value.Text
  113. end)
  114.  
  115. AutoCrates.Name = "AutoCrates"
  116. AutoCrates.Parent = Main
  117. AutoCrates.BackgroundColor3 = Color3.new(0, 0, 0)
  118. AutoCrates.BackgroundTransparency = 0.69999998807907
  119. AutoCrates.BorderColor3 = Color3.new(1, 1, 1)
  120. AutoCrates.BorderSizePixel = 0
  121. AutoCrates.Position = UDim2.new(0, 5, 0, 35)
  122. AutoCrates.Size = UDim2.new(0, 100, 0, 25)
  123. AutoCrates.Font = Enum.Font.SourceSansBold
  124. AutoCrates.FontSize = Enum.FontSize.Size18
  125. AutoCrates.Text = "Auto Crates"
  126. AutoCrates.TextColor3 = Color3.new(1, 1, 1)
  127. AutoCrates.TextSize = 18
  128. AutoCrates.MouseButton1Click:connect(function()
  129. while wait() do
  130. while wait(2) do
  131. for _,v in pairs(game.Workspace:GetChildren()) do
  132. if string.match(v.Name, "DiamondCrate") or string.match(v.Name, "ResearchCrate") or string.match(v.Name, "GoldenCrate") or string.match(v.Name, "CrystalCrate") or string.match(v.Name, "Pumpkin") or string.match(v.Name, "MegaPumpkin") or string.match(v.Name, "Pumpkin") or string.match(v.Name, "LuckyCrate") or string.match(v.Name, "ExecutiveCrate") or string.match(v.Name, "GiftCrate") then
  133. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,0,0)
  134. v.CanCollide = false
  135. v.Transparency = 1
  136. for _,v in pairs(game.Workspace.Shadows:GetChildren()) do
  137. if string.match(v.Name, "ShadowCrate") or string.match(v.Name, "MegaPumpkin") then
  138. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,0,0)
  139. v.CanCollide = false
  140. v.Transparency = 1
  141. end
  142. end
  143. end
  144. end
  145. end
  146. end
  147. end)
  148.  
  149. MaskedMan.Name = "MaskedMan"
  150. MaskedMan.Parent = Main
  151. MaskedMan.BackgroundColor3 = Color3.new(0, 0, 0)
  152. MaskedMan.BackgroundTransparency = 0.69999998807907
  153. MaskedMan.BorderColor3 = Color3.new(1, 1, 1)
  154. MaskedMan.BorderSizePixel = 0
  155. MaskedMan.Position = UDim2.new(0, 110, 0, 35)
  156. MaskedMan.Size = UDim2.new(0, 100, 0, 25)
  157. MaskedMan.Font = Enum.Font.SourceSansBold
  158. MaskedMan.FontSize = Enum.FontSize.Size18
  159. MaskedMan.Text = "Masked Man"
  160. MaskedMan.TextColor3 = Color3.new(1, 1, 1)
  161. MaskedMan.TextSize = 18
  162. MaskedMan.MouseButton1Click:connect(function()
  163. thing = game.Workspace.Market.Hitfox
  164. thing.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(math.random(0,0),0,math.random(0,0))
  165. thing.Transparency = 0
  166. thing.BrickColor = BrickColor.new(255,0,100)
  167. tell = Instance.new("SurfaceGui",thing)
  168. tell2 = Instance.new("TextLabel",tell)
  169. tell2.Size = UDim2.new(0, 800, 0, 750)
  170. tell2.TextWrapped= true
  171. tell2.TextScaled = true
  172. tell2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  173. tell2.TextColor3 = Color3.fromRGB(255, 255, 255)
  174. tell2.Text = "Click Me!"
  175. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement