PersonsadminTeam

Miners Hax

Apr 1st, 2017
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.74 KB | None | 0 0
  1. Code:
  2. -- Variables
  3.  
  4. local Toggled = false
  5. local MinerHax = Instance.new("ScreenGui")
  6. local MinerHaxMain = Instance.new("TextButton")
  7. local LastCalledDisplay = Instance.new("TextLabel")
  8. local Main = Instance.new("Frame")
  9. local CrateToYou = Instance.new("TextButton")
  10. local ToggleCrateToYou = Instance.new("TextButton")
  11. local LuckyClovers = Instance.new("TextButton")
  12. local TwitchCoins = Instance.new("TextButton")
  13. local BringMM = Instance.new("TextButton")
  14. local Codes = Instance.new("TextButton")
  15.  
  16.  
  17. -- Properties
  18.  
  19. MinerHax.Name = "MinerHax"
  20.  
  21. MinerHaxMain.Name = "MinerLuxMain"
  22. MinerHaxMain.Parent = MinerHax
  23. MinerHaxMain.BackgroundColor3 = Color3.new(1,1,1)
  24. MinerHaxMain.BorderColor3 = Color3.new(0,0,0)
  25. MinerHaxMain.Position = UDim2.new(0,5,0.75,-20)
  26. MinerHaxMain.Size = UDim2.new(0,180,0,40)
  27. MinerHaxMain.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  28. MinerHaxMain.Font = Enum.Font.SciFi
  29. MinerHaxMain.FontSize = Enum.FontSize.Size36
  30. MinerHaxMain.Text = "MinerHax"
  31. MinerHaxMain.TextColor3 = Color3.new(1,1,1)
  32. MinerHaxMain.TextSize = 36
  33. MinerHaxMain.TextStrokeTransparency = 0
  34. MinerHaxMain.TextWrapped = true
  35. MinerHaxMain.Draggable = false
  36.  
  37. Main.Name = "Main"
  38. Main.Draggable = true
  39. Main.Parent = MinerHaxMain
  40. Main.BackgroundColor3 = Color3.new(1,1,1)
  41. Main.Position = UDim2.new(0,190,0.75,-49)
  42. Main.Size = UDim2.new (0, 396, 0, 135)
  43. Main.Visible = false
  44. Main.Style = Enum.FrameStyle.DropShadow
  45. MinerHaxMain.MouseButton1Click:connect(function()
  46. Main.Visible = not Main.Visible
  47. end)
  48.  
  49. LuckyClovers.Name = "LuckyClovers"
  50. LuckyClovers.Parent = Main
  51. LuckyClovers.BackgroundColor3 = Color3.new(1, 1, 1)
  52. LuckyClovers.BorderColor3 = Color3.new(0, 0, 0)
  53. LuckyClovers.Position = UDim2.new(0, 0, 0, 80)
  54. LuckyClovers.Size = UDim2.new(0, 180, 0, 40)
  55. LuckyClovers.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  56. LuckyClovers.Font = Enum.Font.SciFi
  57. LuckyClovers.FontSize = Enum.FontSize.Size18
  58. LuckyClovers.Text = "+1 Lucky Clover"
  59. LuckyClovers.TextColor3 = Color3.new(1, 1, 1)
  60. LuckyClovers.TextSize = 18
  61. LuckyClovers.TextStrokeTransparency = 0
  62. LuckyClovers.TextWrapped = true
  63. LuckyClovers.MouseButton1Click:connect(function()
  64. game.Players.LocalPlayer.Clovers.Value = 1
  65. end)
  66.  
  67. CrateToYou.Name = "CrateToYou"
  68. CrateToYou.Parent = Main
  69. CrateToYou.BackgroundColor3 = Color3.new(1,1,1)
  70. CrateToYou.BorderColor3 = Color3.new(0,0,0)
  71. CrateToYou.Position = UDim2.new(0,1,0,0)
  72. CrateToYou.Size = UDim2.new(0,180,0,40)
  73. CrateToYou.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  74. CrateToYou.Font = Enum.Font.SciFi
  75. CrateToYou.FontSize = Enum.FontSize.Size18
  76. CrateToYou.Text = "Bring Crates"
  77. CrateToYou.TextColor3 = Color3.new(1,1,1)
  78. CrateToYou.TextSize = 18
  79. CrateToYou.TextStrokeTransparency = 0
  80. CrateToYou.TextWrapped = true
  81. CrateToYou.MouseButton1Click:connect(function()
  82. for _,obj in pairs(game.Workspace:GetChildren()) do
  83. if string.match(obj.Name,"%s*Crate") then
  84. obj.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(math.random(-2,2),5,math.random(-2,2))
  85. end
  86. end
  87. end)
  88.  
  89. ToggleCrateToYou.Name = "ToggleCrateToYou"
  90. ToggleCrateToYou.Parent = Main
  91. ToggleCrateToYou.BackgroundColor3 = Color3.new(1,1,1)
  92. ToggleCrateToYou.BorderColor3 = Color3.new(0,0,0)
  93. ToggleCrateToYou.Position = UDim2.new(0,1,0,40)
  94. ToggleCrateToYou.Size = UDim2.new(0,180,0,40)
  95. ToggleCrateToYou.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  96. ToggleCrateToYou.Font = Enum.Font.SciFi
  97. ToggleCrateToYou.FontSize = Enum.FontSize.Size36
  98. ToggleCrateToYou.Text = "Auto Bring Crates: "..(Toggled and "ON" or "OFF")
  99. ToggleCrateToYou.TextColor3 = Color3.new(1,1,1)
  100. ToggleCrateToYou.TextScaled = true
  101. ToggleCrateToYou.TextSize = 36
  102. ToggleCrateToYou.TextStrokeTransparency = 0
  103. ToggleCrateToYou.TextWrapped = true
  104. ToggleCrateToYou.MouseButton1Click:connect(function()
  105. Toggled = not Toggled
  106. ToggleCrateToYou.Text = "Auto Bring Crates: "..(Toggled and "ON" or "OFF")
  107. if Toggled then
  108. for _,obj in pairs(game.Workspace:GetChildren()) do
  109. if string.match(obj.Name,"%s*Crate") then
  110. obj.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,0,5)
  111. end
  112. end
  113. end
  114. end)
  115.  
  116. game.Workspace.ChildAdded:connect(function(obj)
  117. if MinerHaxMain ~= nil and Toggled and string.match(obj.Name,"%s*Crate") then
  118. obj.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,0,5)
  119. end
  120. end)
  121.  
  122. TwitchCoins.Name = "TwitchCoins"
  123. TwitchCoins.Parent = Main
  124. TwitchCoins.BackgroundColor3 = Color3.new(1, 1, 1)
  125. TwitchCoins.BorderColor3 = Color3.new(0, 0, 0)
  126. TwitchCoins.Position = UDim2.new(.5, 1, 0, 0)
  127. TwitchCoins.Size = UDim2.new(0, 180, 0, 40)
  128. TwitchCoins.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  129. TwitchCoins.Font = Enum.Font.SciFi
  130. TwitchCoins.FontSize = Enum.FontSize.Size18
  131. TwitchCoins.Text = "+1 Twitch Coin"
  132. TwitchCoins.TextColor3 = Color3.new(1, 1, 1)
  133. TwitchCoins.TextSize = 18
  134. TwitchCoins.TextStrokeTransparency = 0
  135. TwitchCoins.TextWrapped = true
  136. TwitchCoins.MouseButton1Click:connect(function()
  137. game.Players.LocalPlayer.TwitchPoints.Value = 1
  138. end)
  139.  
  140. BringMM.Name = "BringMM"
  141. BringMM.Parent = Main
  142. BringMM.BackgroundColor3 = Color3.new(1, 1, 1)
  143. BringMM.BorderColor3 = Color3.new(0, 0, 0)
  144. BringMM.Position = UDim2.new(.5, 1, .33, 0)
  145. BringMM.Size = UDim2.new(0, 180, 0, 40)
  146. BringMM.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  147. BringMM.Font = Enum.Font.SciFi
  148. BringMM.FontSize = Enum.FontSize.Size18
  149. BringMM.Text = "Bring MM"
  150. BringMM.TextColor3 = Color3.new(1, 1, 1)
  151. BringMM.TextSize = 18
  152. BringMM.TextStrokeTransparency = 0
  153. BringMM.TextWrapped = true
  154. BringMM.MouseButton1Click:connect(function()
  155. local thing = game.Workspace.Market.Hitfox
  156. local tell = Instance.new("SurfaceGui",thing)
  157. local tell2 = Instance.new("TextLabel",tell)
  158. thing = game.Workspace.Market.Hitfox
  159. thing.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(math.random(0,0),0,math.random(0,0))
  160. thing.Transparency = 0
  161. thing.BrickColor = BrickColor.new(255,0,100)
  162. tell2.Size = UDim2.new(0, 800, 0, 750)
  163. tell2.TextWrapped= true
  164. tell2.TextScaled = true
  165. tell2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  166. tell2.TextColor3 = Color3.fromRGB(255, 255, 255)
  167. tell2.Text = "Click Me!"
  168. end)
  169. Codes.Name = "TwitchCoins"
  170. Codes.Parent = Main
  171. Codes.BackgroundColor3 = Color3.new(1, 1, 1)
  172. Codes.BorderColor3 = Color3.new(0, 0, 0)
  173. Codes.Position = UDim2.new(.5, .3, .67, 0)
  174. Codes.Size = UDim2.new(0, 180, 0, 40)
  175. Codes.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  176. Codes.Font = Enum.Font.SciFi
  177. Codes.FontSize = Enum.FontSize.Size18
  178. Codes.Text = "Codes"
  179. Codes.TextColor3 = Color3.new(1, 1, 1)
  180. Codes.TextSize = 18
  181. Codes.TextStrokeTransparency = 0
  182. Codes.TextWrapped = true
  183. Codes.MouseButton1Click:connect(function()
  184. print("The codes are: drinkbeeff,Franceh,residentee,ferocious")
  185. end)
  186.  
  187.  
  188.  
  189.  
  190.  
  191. MinerHax.Parent = game.Players.LocalPlayer.PlayerGui
Add Comment
Please, Sign In to add comment