Project_MAtrix_ZERGO

Best Mining Simulator Hack Gui

Apr 10th, 2019
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.38 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local Button1 = Instance.new("TextButton")
  4. local Button2 = Instance.new("TextButton")
  5. local Button3 = Instance.new("TextButton")
  6. local Button4 = Instance.new("TextButton")
  7.  
  8. -- Properties
  9.  
  10. ScreenGui.Parent = game.CoreGui
  11.  
  12. Frame.Parent = ScreenGui
  13. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  14. Frame.Size = UDim2.new(0, 402, 0, 102)
  15.  
  16. Button1.Name = "Button1"
  17. Button1.Parent = Frame
  18. Button1.BackgroundColor3 = Color3.new(1, 0.701961, 0.996078)
  19. Button1.Size = UDim2.new(0, 100, 0, 100)
  20. Button1.Font = Enum.Font.Bodoni
  21. Button1.Text = "Toy Land"
  22. Button1.TextColor3 = Color3.new(0.207843, 0.145098, 0.192157)
  23. Button1.TextSize = 14
  24.  
  25. Button2.Name = "Button2"
  26. Button2.Parent = Frame
  27. Button2.BackgroundColor3 = Color3.new(1, 0.239216, 0.403922)
  28. Button2.Position = UDim2.new(0, 100, 0, 0)
  29. Button2.Size = UDim2.new(0, 100, 0, 100)
  30. Button2.Font = Enum.Font.Cartoon
  31. Button2.Text = "Insta Mine"
  32. Button2.TextSize = 14
  33.  
  34. Button3.Name = "Button3"
  35. Button3.Parent = Frame
  36. Button3.BackgroundColor3 = Color3.new(0.431373, 0.517647, 1)
  37. Button3.Position = UDim2.new(0, 200, 0, 0)
  38. Button3.Size = UDim2.new(0, 100, 0, 100)
  39. Button3.Font = Enum.Font.Cartoon
  40. Button3.Text = "Sell"
  41. Button3.TextSize = 14
  42.  
  43. Button4.Name = "Button4"
  44. Button4.Parent = Frame
  45. Button4.BackgroundColor3 = Color3.new(0.403922, 0.992157, 1)
  46. Button4.Position = UDim2.new(0, 300, 0, 0)
  47. Button4.Size = UDim2.new(0, 100, 0, 100)
  48. Button4.Font = Enum.Font.Cartoon
  49. Button4.Text = "Vip Area"
  50. Button4.TextSize = 14
  51.  
  52. Button1.MouseButton1Down:connect(function()
  53.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(32.27, 11.47, 5669.87))
  54. end)
  55.  
  56. Button2.MouseButton1Down:connect(function()
  57.     local Player = game.Players.LocalPlayer
  58. local Mouse = Player:GetMouse()
  59. local Activated = false
  60.  
  61. Mouse.Button1Down:connect(function()
  62. Activated = true
  63. end)
  64.  
  65. Mouse.Button1Up:connect(function()
  66. Activated = false
  67. end)
  68.  
  69. while true do
  70.    wait()
  71.    if Activated == true then
  72.        game.Workspace.RemoteEvent:FireServer("MineBlock", Mouse.Target.Parent)
  73.    end
  74. end
  75.  
  76. end)
  77.  
  78. Button3.MouseButton1Down:connect(function()
  79.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-117.01, 13.57, 36.32))
  80. end)
  81.  
  82. Button4.MouseButton1Down:connect(function()
  83.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-49.62, 13.47, -70.22))
  84. end)
Add Comment
Please, Sign In to add comment