Advertisement
FuZionPlayz

Heist GUi

Jun 29th, 2018
4,606
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.22 KB | None | 0 0
  1. -- Objects
  2.  
  3. local Zombie = Instance.new("ScreenGui")
  4. local Main = Instance.new("Frame")
  5. local title = Instance.new("TextLabel")
  6. local Aimbot = Instance.new("TextButton")
  7. local Instant = Instance.new("TextButton")
  8. local Auto = Instance.new("TextButton")
  9.  
  10. -- Properties
  11.  
  12. Zombie.Name = "Zombie"
  13. Zombie.Parent = game.CoreGui
  14.  
  15. Main.Name = "Main"
  16. Main.Parent = Zombie
  17. Main.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118)
  18. Main.Draggable = true
  19. Main.Position = UDim2.new(0.204744071, 0, 0.166007906, 0)
  20. Main.Size = UDim2.new(0, 473, 0, 338)
  21.  
  22. title.Name = "title"
  23. title.Parent = Main
  24. title.BackgroundColor3 = Color3.new(1, 1, 1)
  25. title.BackgroundTransparency = 1
  26. title.Size = UDim2.new(0, 473, 0, 50)
  27. title.Font = Enum.Font.SourceSans
  28. title.Text = "Heist GUI By Zombie"
  29. title.TextColor3 = Color3.new(0, 0, 0)
  30. title.TextSize = 20
  31.  
  32. Aimbot.Name = "Aimbot"
  33. Aimbot.Parent = Main
  34. Aimbot.BackgroundColor3 = Color3.new(1, 1, 1)
  35. Aimbot.BackgroundTransparency = 0.5
  36. Aimbot.Position = UDim2.new(0.0317124724, 0, 0.251479298, 0)
  37. Aimbot.Size = UDim2.new(0, 441, 0, 50)
  38. Aimbot.Font = Enum.Font.SourceSans
  39. Aimbot.Text = "Aimlcok | Left ctrl to lock on"
  40. Aimbot.TextColor3 = Color3.new(0, 0, 0)
  41. Aimbot.TextSize = 16
  42. Aimbot.MouseButton1Down:connect(function()
  43. loadstring(game:HttpGet(('https://pastebin.com/raw/z2wLjDLY'),true))()
  44. end)
  45.  
  46. Instant.Name = "Instant"
  47. Instant.Parent = Main
  48. Instant.BackgroundColor3 = Color3.new(1, 1, 1)
  49. Instant.BackgroundTransparency = 0.5
  50. Instant.Position = UDim2.new(0.0317124724, 0, 0.470414221, 0)
  51. Instant.Size = UDim2.new(0, 441, 0, 50)
  52. Instant.Font = Enum.Font.SourceSans
  53. Instant.Text = "Insta Rob"
  54. Instant.TextColor3 = Color3.new(0, 0, 0)
  55. Instant.TextSize = 20
  56. Instant.MouseButton1Down:connect(function()
  57. loadstring(game:HttpGet(('https://pastebin.com/raw/fPnDAefa'),true))()
  58. end)
  59.  
  60. Auto.Name = "Close"
  61. Auto.Parent = Main
  62. Auto.BackgroundColor3 = Color3.new(1, 1, 1)
  63. Auto.BackgroundTransparency = 0.5
  64. Auto.Position = UDim2.new(0.0317124724, 0, 0.704142034, 0)
  65. Auto.Size = UDim2.new(0, 441, 0, 50)
  66. Auto.Font = Enum.Font.SourceSans
  67. Auto.Text = "X Close GUI X"
  68. Auto.TextColor3 = Color3.new(0, 0, 0)
  69. Auto.TextSize = 20
  70. Auto.MouseButton1Down:connect(function()
  71. Main.Visible = false
  72. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement