Chishiki_Norikarin

GUI Hack Auto Farm Money Game HEIST

Jun 23rd, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 KB | None | 0 0
  1. -- Objects
  2.  
  3. local DoraGui = Instance.new("ScreenGui")
  4. local doraframe = Instance.new("Frame")
  5. local Frame = Instance.new("Frame")
  6. local doralabel = Instance.new("TextLabel")
  7. local dorabutton = Instance.new("TextButton")
  8. local doralabel1 = Instance.new("TextLabel")
  9. local openclose = Instance.new("TextButton")
  10.  
  11. -- Properties
  12.  
  13. DoraGui.Name = "DoraGui"
  14. DoraGui.Parent = game.StarterGui
  15.  
  16. doraframe.Name = "doraframe"
  17. doraframe.Parent = DoraGui
  18. doraframe.BackgroundColor3 = Color3.new(0.454902, 0.454902, 0.454902)
  19. doraframe.BorderSizePixel = 3
  20. doraframe.Position = UDim2.new(0.424270064, 0, 0.288135588, 0)
  21. doraframe.Size = UDim2.new(0, 428, 0, 224)
  22. doraframe.Visible = false
  23.  
  24. Frame.Parent = doraframe
  25. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  26. Frame.Size = UDim2.new(0, 428, 0, 44)
  27.  
  28. doralabel.Name = "doralabel"
  29. doralabel.Parent = doraframe
  30. doralabel.BackgroundColor3 = Color3.new(1, 1, 1)
  31. doralabel.Position = UDim2.new(0.2406542, 0, 0, 0)
  32. doralabel.Size = UDim2.new(0, 222, 0, 44)
  33. doralabel.Font = Enum.Font.SourceSans
  34. doralabel.Text = "Auto Farm HEIST"
  35. doralabel.TextColor3 = Color3.new(0, 0, 0)
  36. doralabel.TextSize = 14
  37.  
  38. dorabutton.Name = "dorabutton"
  39. dorabutton.Parent = doraframe
  40. dorabutton.BackgroundColor3 = Color3.new(1, 1, 1)
  41. dorabutton.Position = UDim2.new(0.282710254, 0, 0.401785731, 0)
  42. dorabutton.Size = UDim2.new(0, 186, 0, 68)
  43. dorabutton.Font = Enum.Font.SourceSans
  44. dorabutton.Text = "Click!"
  45. dorabutton.TextColor3 = Color3.new(0, 0, 0)
  46. dorabutton.TextSize = 14
  47.  
  48. doralabel1.Name = "doralabel1"
  49. doralabel1.Parent = doraframe
  50. doralabel1.BackgroundColor3 = Color3.new(0.0980392, 0.419608, 0.286275)
  51. doralabel1.BorderSizePixel = 2
  52. doralabel1.Position = UDim2.new(0.574766338, 0, 0.90625, 0)
  53. doralabel1.Size = UDim2.new(0, 182, 0, 21)
  54. doralabel1.Font = Enum.Font.SourceSans
  55. doralabel1.Text = "GUI Made By Chishiki Norikarin"
  56. doralabel1.TextColor3 = Color3.new(0, 0, 0)
  57. doralabel1.TextSize = 14
  58.  
  59. openclose.Name = "openclose"
  60. openclose.Parent = DoraGui
  61. openclose.BackgroundColor3 = Color3.new(1, 1, 1)
  62. openclose.Position = UDim2.new(0.901459873, 0, 0.525423706, 0)
  63. openclose.Size = UDim2.new(0, 108, 0, 50)
  64. openclose.Font = Enum.Font.SourceSans
  65. openclose.Text = "Open"
  66. openclose.TextColor3 = Color3.new(0, 0, 0)
  67. openclose.TextSize = 14
  68. openclose.MouseButton1Click:conect(function()
  69. if openclose.Text == "Open" then
  70. doraframe.Visible = true
  71. openclose.Text = "Close"
  72. else
  73. doraframe.Visible = false
  74. openclose.Text = "Open"
  75.  
  76. end
  77. end)
Add Comment
Please, Sign In to add comment