naruto9161

hack zombie

Jun 13th, 2018
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.51 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ZombireMiningSimulator = Instance.new("ScreenGui")
  4. local Main = Instance.new("Frame")
  5. local Credits = Instance.new("TextLabel")
  6. local Credits2 = Instance.new("TextLabel")
  7. local Nuke = Instance.new("TextButton")
  8. local InfMoney = Instance.new("TextButton")
  9. local exit = Instance.new("TextButton")
  10. local ImageLabel = Instance.new("ImageLabel")
  11. local nts = game.Players.LocalPlayer.PlayerGui
  12.  
  13. -- Properties
  14.  
  15. ZombireMiningSimulator.Name = "ZombireMiningSimulator"
  16. ZombireMiningSimulator.Parent = nts
  17. Main.Name = "Main"
  18. Main.Parent = ZombireMiningSimulator
  19. Main.BackgroundColor3 = Color3.new(0, 0, 0)
  20. Main.BackgroundTransparency = 0.30000001192093
  21. Main.BorderColor3 = Color3.new(0.333333, 0.666667, 0)
  22. Main.BorderSizePixel = 2
  23. Main.Position = UDim2.new(0.013029322, 0, 0.204156473, 0)
  24. Main.Size = UDim2.new(0, 278, 0, 421)
  25.  
  26. Credits.Name = "Credits"
  27. Credits.Parent = Main
  28. Credits.BackgroundColor3 = Color3.new(1, 1, 1)
  29. Credits.BackgroundTransparency = 1
  30. Credits.Size = UDim2.new(0, 278, 0, 50)
  31. Credits.Font = Enum.Font.SourceSans
  32. Credits.Text = "Credits: JeSuisFrançais/colonelmeatball"
  33. Credits.TextColor3 = Color3.new(1, 0, 0)
  34. Credits.TextSize = 14
  35.  
  36. Credits2.Name = "Credits2"
  37. Credits2.Parent = Main
  38. Credits2.BackgroundColor3 = Color3.new(1, 1, 1)
  39. Credits2.BackgroundTransparency = 1
  40. Credits2.Position = UDim2.new(0, 0, 0.0332541578, 0)
  41. Credits2.Size = UDim2.new(0, 278, 0, 50)
  42. Credits2.Font = Enum.Font.SourceSans
  43. Credits2.Text = "Oxegonal"
  44. Credits2.TextColor3 = Color3.new(1, 0, 0)
  45. Credits2.TextSize = 14
  46.  
  47. Nuke.Name = "Nuke"
  48. Nuke.Parent = Main
  49. Nuke.BackgroundColor3 = Color3.new(1, 1, 1)
  50. Nuke.Position = UDim2.new(0.140287772, 0, 0.28978622, 0)
  51. Nuke.Size = UDim2.new(0, 200, 0, 50)
  52. Nuke.Font = Enum.Font.SciFi
  53. Nuke.Text = "Epic bucket"
  54. Nuke.TextColor3 = Color3.new(0, 0, 0)
  55. Nuke.TextScaled = true
  56. Nuke.TextSize = 14
  57. Nuke.TextWrapped = true
  58. Nuke.MouseButton1Down:connect(function()
  59. game.Players.LocalPlayer.Data.ActiveTool.Value = "Nuke"
  60. end)
  61.  
  62. InfMoney.Name = "InfMoney"
  63. InfMoney.Parent = Main
  64. InfMoney.BackgroundColor3 = Color3.new(1, 1, 1)
  65. InfMoney.Position = UDim2.new(0.140287772, 0, 0.515439391, 0)
  66. InfMoney.Size = UDim2.new(0, 200, 0, 50)
  67. InfMoney.Font = Enum.Font.SciFi
  68. InfMoney.Text = "InfMoney (lags)"
  69. InfMoney.TextColor3 = Color3.new(0, 0, 0)
  70. InfMoney.TextScaled = true
  71. InfMoney.TextSize = 14
  72. InfMoney.TextWrapped = true
  73. InfMoney.MouseButton1Down:connect(function()
  74. coroutine.wrap(function()
  75. while wait() do
  76. for i,v in pairs(game.Workspace.ActiveBlocks:GetChildren()) do
  77. game.ReplicatedStorage.Events.BreakBlockEvent:FireServer(v)
  78. game.ReplicatedStorage.Events.SellResourceEvent:FireServer("Minerals")
  79. game.ReplicatedStorage.Events.SellResourceEvent:FireServer("Brains")
  80. game:GetService("RunService").RenderStepped:Wait()
  81. end
  82. end
  83. end)()
  84. end)
  85.  
  86. exit.Name = "exit"
  87. exit.Parent = Main
  88. exit.BackgroundColor3 = Color3.new(1, 1, 1)
  89. exit.BorderColor3 = Color3.new(1, 0, 0)
  90. exit.BorderSizePixel = 3
  91. exit.Position = UDim2.new(0.140287772, 0, 0.762470245, 0)
  92. exit.Size = UDim2.new(0, 200, 0, 50)
  93. exit.Font = Enum.Font.SciFi
  94. exit.Text = "Exit"
  95. exit.TextColor3 = Color3.new(1, 0, 0)
  96. exit.TextScaled = true
  97. exit.TextSize = 14
  98. exit.TextWrapped = true
  99. exit.MouseButton1Down:connect(function()
  100. Main.Visible = false
  101. end)
  102.  
  103. ImageLabel.Parent = Main
  104. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  105. ImageLabel.Position = UDim2.new(0.0863309354, 0, 0.118764848, 0)
  106. ImageLabel.Size = UDim2.new(0, 243, 0, 61)
  107. ImageLabel.Image = "rbxgameasset://Images/9e206309e5fe64f8f1e09550184f10ac"
Add Comment
Please, Sign In to add comment