Advertisement
SalatBlitz123

BreakIn 2

Mar 8th, 2020
8,890
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.58 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local main = Instance.new("Frame")
  3. local BreakIn = Instance.new("TextLabel")
  4. local opGui = Instance.new("TextButton")
  5. local police = Instance.new("TextButton")
  6. local Throw = Instance.new("TextButton")
  7. local Close = Instance.new("TextButton")
  8. local OpenButton = Instance.new("TextButton")
  9.  
  10. --Properties:
  11.  
  12. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  13. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  14.  
  15. main.Name = "main"
  16. main.Parent = ScreenGui
  17. main.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  18. main.Position = UDim2.new(0.444747597, 0, 0.350253791, 0)
  19. main.Size = UDim2.new(0, 136, 0, 165)
  20. main.Visible = false
  21. main.Draggable = true
  22.  
  23. BreakIn.Name = "BreakIn"
  24. BreakIn.Parent = main
  25. BreakIn.BackgroundColor3 = Color3.fromRGB(65, 65, 65)
  26. BreakIn.Position = UDim2.new(-0.235294119, 0, -0.0545454547, 0)
  27. BreakIn.Size = UDim2.new(0, 200, 0, 33)
  28. BreakIn.Font = Enum.Font.SourceSans
  29. BreakIn.Text = "Break In (Story)"
  30. BreakIn.TextColor3 = Color3.fromRGB(112, 112, 112)
  31. BreakIn.TextSize = 14.000
  32.  
  33. opGui.Name = "opGui"
  34. opGui.Parent = main
  35. opGui.BackgroundColor3 = Color3.fromRGB(65, 65, 65)
  36. opGui.Position = UDim2.new(0.213235289, 0, 0.25454545, 0)
  37. opGui.Size = UDim2.new(0, 77, 0, 17)
  38. opGui.Font = Enum.Font.SourceSans
  39. opGui.Text = "OpGui"
  40. opGui.TextColor3 = Color3.fromRGB(113, 113, 113)
  41. opGui.TextSize = 14.000
  42. opGui.MouseButton1Down:connect(function()
  43. loadstring(game:HttpGet("https://pastebin.com/raw/Wg8pEW3Z", true))()
  44. end)
  45.  
  46. police.Name = "police"
  47. police.Parent = main
  48. police.BackgroundColor3 = Color3.fromRGB(65, 65, 65)
  49. police.Position = UDim2.new(0.161764711, 0, 0.454545468, 0)
  50. police.Size = UDim2.new(0, 93, 0, 15)
  51. police.Font = Enum.Font.SourceSans
  52. police.Text = "Police (in spawn)"
  53. police.TextColor3 = Color3.fromRGB(0, 0, 0)
  54. police.TextSize = 14.000
  55. police.MouseButton1Down:connect(function()
  56. local A_1 = "Gun"
  57. local A_2 = true
  58. local Event = game:GetService("ReplicatedStorage").RemoteEvents.OutsideRole
  59. Event:FireServer(A_1, A_2)
  60. end)
  61.  
  62. Throw.Name = "Throw"
  63. Throw.Parent = main
  64. Throw.BackgroundColor3 = Color3.fromRGB(65, 65, 65)
  65. Throw.BorderColor3 = Color3.fromRGB(65, 65, 65)
  66. Throw.Position = UDim2.new(0.213235289, 0, 0.684848487, 0)
  67. Throw.Size = UDim2.new(0, 77, 0, 19)
  68. Throw.Font = Enum.Font.SourceSans
  69. Throw.Text = "throw away"
  70. Throw.TextColor3 = Color3.fromRGB(0, 0, 0)
  71. Throw.TextSize = 14.000
  72. Throw.MouseButton1Down:connect(function()
  73. while wait(1) do
  74. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  75. if v:IsA("Tool") then
  76. v.CanBeDropped = true
  77. end
  78. end
  79. end
  80. end)
  81.  
  82. Close.Name = "Close"
  83. Close.Parent = main
  84. Close.BackgroundColor3 = Color3.fromRGB(65, 65, 65)
  85. Close.BorderSizePixel = 0
  86. Close.Position = UDim2.new(1, 0, -0.0545454547, 0)
  87. Close.Size = UDim2.new(0, 32, 0, 33)
  88. Close.Font = Enum.Font.SourceSans
  89. Close.Text = "X"
  90. Close.TextColor3 = Color3.fromRGB(0, 0, 0)
  91. Close.TextSize = 14.000
  92. Close.MouseButton1Down:connect(function()
  93. OpenButton.Visible = true
  94. main.Visible = false
  95. end)
  96.  
  97. OpenButton.Name = "OpenButton"
  98. OpenButton.Parent = ScreenGui
  99. OpenButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  100. OpenButton.Position = UDim2.new(0.925940275, 0, 0.886497438, 0)
  101. OpenButton.Size = UDim2.new(0, 54, 0, 19)
  102. OpenButton.Font = Enum.Font.SourceSans
  103. OpenButton.Text = "Open"
  104. OpenButton.TextColor3 = Color3.fromRGB(121, 121, 121)
  105. OpenButton.TextSize = 14.000
  106. OpenButton.MouseButton1Down:connect(function()
  107. main.Visible = true
  108. OpenButton.Visible = false
  109. end)
  110.  
  111. --full version come soon
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement