Advertisement
SalatBlitz123

Break in full version

Mar 8th, 2020
14,749
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.27 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Open = Instance.new("TextButton")
  8. local Main = Instance.new("Frame")
  9. local Close = Instance.new("TextButton")
  10. local By = Instance.new("TextLabel")
  11. local ITEMS = Instance.new("TextLabel")
  12. local Chips = Instance.new("TextButton")
  13. local Cola = Instance.new("TextButton")
  14. local Gun = Instance.new("TextButton")
  15. local Bat = Instance.new("TextButton")
  16. local Apple = Instance.new("TextButton")
  17. local MedKit = Instance.new("TextButton")
  18. local Pizza = Instance.new("TextButton")
  19. local Cookie = Instance.new("TextButton")
  20. local EpicPizza = Instance.new("TextButton")
  21. local Key = Instance.new("TextButton")
  22. local Teddy = Instance.new("TextButton")
  23. local Sword = Instance.new("TextButton")
  24. local Pan = Instance.new("TextButton")
  25. local Teleports = Instance.new("TextLabel")
  26. local Hacks = Instance.new("TextButton")
  27. local Basement = Instance.new("TextButton")
  28. local house = Instance.new("TextButton")
  29. local Attic = Instance.new("TextButton")
  30. local Store = Instance.new("TextButton")
  31. local Sewer = Instance.new("TextButton")
  32. local BossRoom = Instance.new("TextButton")
  33. local Remotes = Instance.new("TextLabel")
  34. local Cat = Instance.new("TextButton")
  35. local KillEnemies = Instance.new("TextButton")
  36. local Heal = Instance.new("TextButton")
  37. local RemoveTools = Instance.new("TextButton")
  38. local ToolDrop = Instance.new("TextButton")
  39. local OpenSafe = Instance.new("TextButton")
  40.  
  41. --Properties:
  42.  
  43. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  44. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  45.  
  46. Open.Name = "Open"
  47. Open.Parent = ScreenGui
  48. Open.BackgroundColor3 = Color3.fromRGB(71, 219, 232)
  49. Open.Position = UDim2.new(0.912489355, 0, 0.7581864, 0)
  50. Open.Size = UDim2.new(0, 83, 0, 34)
  51. Open.Font = Enum.Font.SourceSans
  52. Open.Text = "Open"
  53. Open.TextColor3 = Color3.fromRGB(0, 0, 0)
  54. Open.TextSize = 14.000
  55. Open.MouseButton1Down:connect(function()
  56. Open.Visible = false
  57. Main.Visible = true
  58. end)
  59.  
  60. Main.Name = "Main"
  61. Main.Parent = ScreenGui
  62. Main.BackgroundColor3 = Color3.fromRGB(71, 219, 232)
  63. Main.Position = UDim2.new(0.438402712, 0, 0, 0)
  64. Main.Size = UDim2.new(0, 383, 0, 486)
  65. Main.Active = true
  66. Main.Draggable = true
  67. Main.Visible = false
  68.  
  69. Close.Name = "Close"
  70. Close.Parent = Main
  71. Close.BackgroundColor3 = Color3.fromRGB(48, 150, 157)
  72. Close.Position = UDim2.new(-0.0972082838, 0, 0.101414666, 0)
  73. Close.Size = UDim2.new(0, 37, 0, 38)
  74. Close.Font = Enum.Font.GothamBold
  75. Close.Text = "X"
  76. Close.TextColor3 = Color3.fromRGB(0, 0, 0)
  77. Close.TextSize = 14.000
  78. Close.MouseButton1Down:connect(function()
  79. Main.Visible = false
  80. Open.Visible = true
  81. end)
  82.  
  83. By.Name = "By"
  84. By.Parent = Main
  85. By.BackgroundColor3 = Color3.fromRGB(53, 167, 175)
  86. By.Position = UDim2.new(-0.091412738, 0, 0, 0)
  87. By.Size = UDim2.new(0, 426, 0, 50)
  88. By.Font = Enum.Font.GothamBold
  89. By.Text = "Break In (Story) gui by SalatBlitz"
  90. By.TextColor3 = Color3.fromRGB(0, 0, 0)
  91. By.TextSize = 14.000
  92.  
  93. ITEMS.Name = "ITEMS"
  94. ITEMS.Parent = Main
  95. ITEMS.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  96. ITEMS.Position = UDim2.new(0.203334212, 0, 0.122326925, 0)
  97. ITEMS.Size = UDim2.new(0, 200, 0, 27)
  98. ITEMS.Font = Enum.Font.GothamBlack
  99. ITEMS.Text = "Give Items"
  100. ITEMS.TextColor3 = Color3.fromRGB(0, 0, 0)
  101. ITEMS.TextSize = 14.000
  102.  
  103. Chips.Name = "Chips"
  104. Chips.Parent = Main
  105. Chips.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  106. Chips.Position = UDim2.new(0, 0, 0.204812855, 0)
  107. Chips.Size = UDim2.new(0, 100, 0, 29)
  108. Chips.Font = Enum.Font.SourceSans
  109. Chips.Text = "Chips"
  110. Chips.TextColor3 = Color3.fromRGB(0, 0, 0)
  111. Chips.TextSize = 14.000
  112. Chips.MouseButton1Down:connect(function()
  113. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Chips")
  114. end)
  115.  
  116. Cola.Name = "Cola"
  117. Cola.Parent = Main
  118. Cola.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  119. Cola.Position = UDim2.new(0.297650129, 0, 0.203703701, 0)
  120. Cola.Size = UDim2.new(0, 100, 0, 29)
  121. Cola.Font = Enum.Font.SourceSans
  122. Cola.Text = "BloxyCola"
  123. Cola.TextColor3 = Color3.fromRGB(0, 0, 0)
  124. Cola.TextSize = 14.000
  125. Cola.MouseButton1Down:connect(function()
  126. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("BloxyCola")
  127. end)
  128.  
  129. Gun.Name = "Gun"
  130. Gun.Parent = Main
  131. Gun.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  132. Gun.Position = UDim2.new(0.608355045, 0, 0.203703701, 0)
  133. Gun.Size = UDim2.new(0, 100, 0, 29)
  134. Gun.Font = Enum.Font.SourceSans
  135. Gun.Text = "Gun (in spawn)"
  136. Gun.TextColor3 = Color3.fromRGB(0, 0, 0)
  137. Gun.TextSize = 14.000
  138. Gun.MouseButton1Down:connect(function()
  139. local A_1 = "Gun"
  140. local A_2 = true
  141. local Event = game:GetService("ReplicatedStorage").RemoteEvents.OutsideRole
  142. Event:FireServer(A_1, A_2)
  143. end)
  144.  
  145. Bat.Name = "Bat"
  146. Bat.Parent = Main
  147. Bat.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  148. Bat.Position = UDim2.new(0, 0, 0.294238687, 0)
  149. Bat.Size = UDim2.new(0, 100, 0, 29)
  150. Bat.Font = Enum.Font.SourceSans
  151. Bat.Text = "Bat"
  152. Bat.TextColor3 = Color3.fromRGB(0, 0, 0)
  153. Bat.TextSize = 14.000
  154. Bat.MouseButton1Down:connect(function()
  155. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Bat")
  156. end)
  157.  
  158. Apple.Name = "Apple"
  159. Apple.Parent = Main
  160. Apple.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  161. Apple.Position = UDim2.new(0.297650129, 0, 0.294238687, 0)
  162. Apple.Size = UDim2.new(0, 100, 0, 29)
  163. Apple.Font = Enum.Font.SourceSans
  164. Apple.Text = "Apple"
  165. Apple.TextColor3 = Color3.fromRGB(0, 0, 0)
  166. Apple.TextSize = 14.000
  167. Apple.MouseButton1Down:connect(function()
  168. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Apple")
  169. end)
  170.  
  171. MedKit.Name = "MedKit"
  172. MedKit.Parent = Main
  173. MedKit.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  174. MedKit.Position = UDim2.new(0.608355105, 0, 0.294238687, 0)
  175. MedKit.Size = UDim2.new(0, 100, 0, 29)
  176. MedKit.Font = Enum.Font.SourceSans
  177. MedKit.Text = "Medkit"
  178. MedKit.TextColor3 = Color3.fromRGB(0, 0, 0)
  179. MedKit.TextSize = 14.000
  180. MedKit.MouseButton1Down:connect(function()
  181. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("MedKit")
  182. end)
  183.  
  184. Pizza.Name = "Pizza"
  185. Pizza.Parent = Main
  186. Pizza.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  187. Pizza.Position = UDim2.new(0, 0, 0.38271606, 0)
  188. Pizza.Size = UDim2.new(0, 100, 0, 29)
  189. Pizza.Font = Enum.Font.SourceSans
  190. Pizza.Text = "Pizza"
  191. Pizza.TextColor3 = Color3.fromRGB(0, 0, 0)
  192. Pizza.TextSize = 14.000
  193. Pizza.MouseButton1Down:connect(function()
  194. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Pizza2")
  195. end)
  196.  
  197. Cookie.Name = "Cookie"
  198. Cookie.Parent = Main
  199. Cookie.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  200. Cookie.Position = UDim2.new(0.297650129, 0, 0.38271606, 0)
  201. Cookie.Size = UDim2.new(0, 100, 0, 29)
  202. Cookie.Font = Enum.Font.SourceSans
  203. Cookie.Text = "Cookie"
  204. Cookie.TextColor3 = Color3.fromRGB(0, 0, 0)
  205. Cookie.TextSize = 14.000
  206. Cookie.MouseButton1Down:connect(function()
  207. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Cookie")
  208. end)
  209.  
  210. EpicPizza.Name = "EpicPizza"
  211. EpicPizza.Parent = Main
  212. EpicPizza.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  213. EpicPizza.Position = UDim2.new(0.608355105, 0, 0.38271606, 0)
  214. EpicPizza.Size = UDim2.new(0, 100, 0, 29)
  215. EpicPizza.Font = Enum.Font.SourceSans
  216. EpicPizza.Text = "EpicPizza"
  217. EpicPizza.TextColor3 = Color3.fromRGB(0, 0, 0)
  218. EpicPizza.TextSize = 14.000
  219. EpicPizza.MouseButton1Down:connect(function()
  220. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("EpicPizza")
  221. end)
  222.  
  223. Key.Name = "Key"
  224. Key.Parent = Main
  225. Key.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  226. Key.Position = UDim2.new(-0.0026109661, 0, 0.469135821, 0)
  227. Key.Size = UDim2.new(0, 101, 0, 28)
  228. Key.Font = Enum.Font.SourceSans
  229. Key.Text = "Key"
  230. Key.TextColor3 = Color3.fromRGB(0, 0, 0)
  231. Key.TextSize = 14.000
  232. Key.MouseButton1Down:connect(function()
  233. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Key")
  234. end)
  235.  
  236. Teddy.Name = "Teddy"
  237. Teddy.Parent = Main
  238. Teddy.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  239. Teddy.Position = UDim2.new(0.297650129, 0, 0.469135791, 0)
  240. Teddy.Size = UDim2.new(0, 100, 0, 29)
  241. Teddy.Font = Enum.Font.SourceSans
  242. Teddy.Text = "TeddyBloxpin"
  243. Teddy.TextColor3 = Color3.fromRGB(0, 0, 0)
  244. Teddy.TextSize = 14.000
  245. Teddy.MouseButton1Down:connect(function()
  246. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("TeddyBloxpin")
  247. end)
  248.  
  249. Sword.Name = "Sword"
  250. Sword.Parent = Main
  251. Sword.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  252. Sword.Position = UDim2.new(0.608355105, 0, 0.469135791, 0)
  253. Sword.Size = UDim2.new(0, 100, 0, 29)
  254. Sword.Font = Enum.Font.SourceSans
  255. Sword.Text = "Sword"
  256. Sword.TextColor3 = Color3.fromRGB(0, 0, 0)
  257. Sword.TextSize = 14.000
  258. Sword.MouseButton1Down:connect(function()
  259. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Sword")
  260. end)
  261.  
  262. Pan.Name = "Pan"
  263. Pan.Parent = Main
  264. Pan.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  265. Pan.Position = UDim2.new(0.9007833, 0, 0.203703701, 0)
  266. Pan.Size = UDim2.new(0, 38, 0, 50)
  267. Pan.Font = Enum.Font.SourceSans
  268. Pan.Text = "Pan"
  269. Pan.TextColor3 = Color3.fromRGB(0, 0, 0)
  270. Pan.TextSize = 14.000
  271. Pan.MouseButton1Down:connect(function()
  272. game.ReplicatedStorage.RemoteEvents.BuyItem:FireServer("Pan", 0)
  273. end)
  274.  
  275. Teleports.Name = "Teleports"
  276. Teleports.Parent = Main
  277. Teleports.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  278. Teleports.BorderColor3 = Color3.fromRGB(45, 141, 148)
  279. Teleports.Position = UDim2.new(0.201044381, 0, 0.55349797, 0)
  280. Teleports.Size = UDim2.new(0, 200, 0, 29)
  281. Teleports.Font = Enum.Font.GothamBlack
  282. Teleports.Text = "Teleports"
  283. Teleports.TextColor3 = Color3.fromRGB(0, 0, 0)
  284. Teleports.TextSize = 14.000
  285.  
  286. Hacks.Name = "Hacks"
  287. Hacks.Parent = Main
  288. Hacks.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  289. Hacks.Position = UDim2.new(0.9007833, 0, 0.327160507, 0)
  290. Hacks.Size = UDim2.new(0, 38, 0, 98)
  291. Hacks.Font = Enum.Font.SourceSans
  292. Hacks.Text = "Jump hack, speed hack, noclip (e)"
  293. Hacks.TextColor3 = Color3.fromRGB(0, 0, 0)
  294. Hacks.TextSize = 14.000
  295. Hacks.TextWrapped = true
  296. Hacks.MouseButton1Down:connect(function()
  297. game:GetService("Players").LocalPlayer.Character:FindFirstChild("Humanoid").WalkSpeed = 35
  298. game:GetService("Players").LocalPlayer.Character:FindFirstChild("Humanoid").JumpPower = 65
  299. local noclip = false
  300. game:GetService('RunService').Stepped:connect(function()
  301. if noclip then
  302. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  303. end
  304. end)
  305.  
  306. local plr = game.Players.LocalPlayer
  307. local mouse = plr:GetMouse()
  308. mouse.KeyDown:connect(function(key)
  309. if key == 'e' then
  310. noclip = not noclip
  311. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  312. end
  313. end)
  314.  
  315.  
  316. end)
  317.  
  318. Basement.Name = "Basement"
  319. Basement.Parent = Main
  320. Basement.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  321. Basement.Position = UDim2.new(0, 0, 0.646090508, 0)
  322. Basement.Size = UDim2.new(0, 100, 0, 29)
  323. Basement.Font = Enum.Font.SourceSans
  324. Basement.Text = "Basement"
  325. Basement.TextColor3 = Color3.fromRGB(0, 0, 0)
  326. Basement.TextSize = 14.000
  327. Basement.MouseButton1Down:connect(function()
  328. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(71, -15, -163)
  329. end)
  330.  
  331. house.Name = "house"
  332. house.Parent = Main
  333. house.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  334. house.Position = UDim2.new(0.297650129, 0, 0.646090508, 0)
  335. house.Size = UDim2.new(0, 100, 0, 29)
  336. house.Font = Enum.Font.SourceSans
  337. house.Text = "House"
  338. house.TextColor3 = Color3.fromRGB(0, 0, 0)
  339. house.TextSize = 14.000
  340. house.MouseButton1Down:connect(function()
  341. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-36, 3, -200)
  342. end)
  343.  
  344. Attic.Name = "Attic"
  345. Attic.Parent = Main
  346. Attic.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  347. Attic.Position = UDim2.new(0.608355105, 0, 0.646090508, 0)
  348. Attic.Size = UDim2.new(0, 100, 0, 29)
  349. Attic.Font = Enum.Font.SourceSans
  350. Attic.Text = "Attic"
  351. Attic.TextColor3 = Color3.fromRGB(0, 0, 0)
  352. Attic.TextSize = 14.000
  353. Attic.MouseButton1Down:connect(function()
  354. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-16, 35, -220)
  355. end)
  356.  
  357. Store.Name = "Store"
  358. Store.Parent = Main
  359. Store.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  360. Store.Position = UDim2.new(0, 0, 0.728395045, 0)
  361. Store.Size = UDim2.new(0, 100, 0, 28)
  362. Store.Font = Enum.Font.SourceSans
  363. Store.Text = "Store"
  364. Store.TextColor3 = Color3.fromRGB(0, 0, 0)
  365. Store.TextSize = 14.000
  366. Store.MouseButton1Down:connect(function()
  367. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-422, 3, -121)
  368. end)
  369.  
  370. Sewer.Name = "Sewer"
  371. Sewer.Parent = Main
  372. Sewer.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  373. Sewer.Position = UDim2.new(0.297650129, 0, 0.728395045, 0)
  374. Sewer.Size = UDim2.new(0, 100, 0, 28)
  375. Sewer.Font = Enum.Font.SourceSans
  376. Sewer.Text = "Sewer"
  377. Sewer.TextColor3 = Color3.fromRGB(0, 0, 0)
  378. Sewer.TextSize = 14.000
  379. Sewer.MouseButton1Down:connect(function()
  380. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(129, 3, -125)
  381. end)
  382.  
  383. BossRoom.Name = "BossRoom"
  384. BossRoom.Parent = Main
  385. BossRoom.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  386. BossRoom.Position = UDim2.new(0.608355105, 0, 0.728395045, 0)
  387. BossRoom.Size = UDim2.new(0, 100, 0, 28)
  388. BossRoom.Font = Enum.Font.SourceSans
  389. BossRoom.Text = "BossRoom"
  390. BossRoom.TextColor3 = Color3.fromRGB(0, 0, 0)
  391. BossRoom.TextSize = 14.000
  392. BossRoom.MouseButton1Down:connect(function()
  393. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-39, -287, -1480)
  394. end)
  395.  
  396. Remotes.Name = "Remotes"
  397. Remotes.Parent = Main
  398. Remotes.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  399. Remotes.Position = UDim2.new(0.201044381, 0, 0.804526746, 0)
  400. Remotes.Size = UDim2.new(0, 200, 0, 25)
  401. Remotes.Font = Enum.Font.GothamBlack
  402. Remotes.Text = "Remotes"
  403. Remotes.TextColor3 = Color3.fromRGB(0, 0, 0)
  404. Remotes.TextSize = 14.000
  405.  
  406. Cat.Name = "Cat"
  407. Cat.Parent = Main
  408. Cat.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  409. Cat.Position = UDim2.new(-0.0026109661, 0, 0.874485612, 0)
  410. Cat.Size = UDim2.new(0, 101, 0, 24)
  411. Cat.Font = Enum.Font.SourceSans
  412. Cat.Text = "Befriend Cat"
  413. Cat.TextColor3 = Color3.fromRGB(0, 0, 0)
  414. Cat.TextSize = 14.000
  415. Cat.MouseButton1Down:connect(function()
  416. local Target = game:GetService("ReplicatedStorage").RemoteEvents.Cattery;
  417. Target:FireServer();
  418. end)
  419.  
  420. KillEnemies.Name = "KillEnemies"
  421. KillEnemies.Parent = Main
  422. KillEnemies.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  423. KillEnemies.Position = UDim2.new(0.297650129, 0, 0.874485612, 0)
  424. KillEnemies.Size = UDim2.new(0, 81, 0, 24)
  425. KillEnemies.Font = Enum.Font.SourceSans
  426. KillEnemies.Text = "Kill Enemies"
  427. KillEnemies.TextColor3 = Color3.fromRGB(0, 0, 0)
  428. KillEnemies.TextSize = 14.000
  429. KillEnemies.MouseButton1Down:connect(function()
  430. for i,v in pairs(game.Workspace.BadGuys:GetChildren()) do
  431. for i = 1, 50 do
  432. game:GetService("ReplicatedStorage").RemoteEvents.HitBadguy:FireServer(v,10)
  433. game:GetService("ReplicatedStorage").RemoteEvents.HitBadguy:FireServer(v,996)
  434. game:GetService("ReplicatedStorage").RemoteEvents.HitBadguy:FireServer(v,9)
  435. game:GetService("ReplicatedStorage").RemoteEvents.HitBadguy:FireServer(v,8)
  436. game:GetService("ReplicatedStorage").RemoteEvents.HitBadguy:FireServer(v,996)
  437. end
  438. end
  439. end)
  440.  
  441. Heal.Name = "Heal"
  442. Heal.Parent = Main
  443. Heal.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  444. Heal.Position = UDim2.new(0.558746755, 0, 0.874485612, 0)
  445. Heal.Size = UDim2.new(0, 76, 0, 24)
  446. Heal.Font = Enum.Font.SourceSans
  447. Heal.Text = "Insta Heal"
  448. Heal.TextColor3 = Color3.fromRGB(0, 0, 0)
  449. Heal.TextSize = 14.000
  450. Heal.MouseButton1Down:connect(function()
  451. for i = 1, 200 do
  452. wait(0.0001)
  453. local A_1 = "Cat"
  454. local Event = game:GetService("ReplicatedStorage").RemoteEvents.Energy
  455. Event:FireServer(A_1)
  456. end
  457. end)
  458.  
  459. RemoveTools.Name = "RemoveTools"
  460. RemoveTools.Parent = Main
  461. RemoveTools.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  462. RemoveTools.Position = UDim2.new(0.785900772, 0, 0.874485612, 0)
  463. RemoveTools.Size = UDim2.new(0, 82, 0, 24)
  464. RemoveTools.Font = Enum.Font.SourceSans
  465. RemoveTools.Text = "RemoveTools"
  466. RemoveTools.TextColor3 = Color3.fromRGB(0, 0, 0)
  467. RemoveTools.TextSize = 14.000
  468. RemoveTools.MouseButton1Down:connect(function()
  469. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  470. if v:IsA("Tool") then
  471. v:Destroy()
  472. end
  473. end
  474. end)
  475.  
  476. ToolDrop.Name = "ToolDrop"
  477. ToolDrop.Parent = Main
  478. ToolDrop.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  479. ToolDrop.Position = UDim2.new(-0.0026109661, 0, 0.952674866, 0)
  480. ToolDrop.Size = UDim2.new(0, 101, 0, 23)
  481. ToolDrop.Font = Enum.Font.SourceSans
  482. ToolDrop.Text = "ToolDrop"
  483. ToolDrop.TextColor3 = Color3.fromRGB(0, 0, 0)
  484. ToolDrop.TextSize = 14.000
  485. ToolDrop.MouseButton1Down:connect(function()
  486. while wait(1) do
  487. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  488. if v:IsA("Tool") then
  489. v.CanBeDropped = true
  490. end
  491. end
  492. end
  493. end)
  494.  
  495. OpenSafe.Name = "OpenSafe"
  496. OpenSafe.Parent = Main
  497. OpenSafe.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  498. OpenSafe.Position = UDim2.new(0.297650129, 0, 0.952674925, 0)
  499. OpenSafe.Size = UDim2.new(0, 81, 0, 23)
  500. OpenSafe.Font = Enum.Font.SourceSans
  501. OpenSafe.Text = "Open Safe"
  502. OpenSafe.TextColor3 = Color3.fromRGB(0, 0, 0)
  503. OpenSafe.TextSize = 14.000
  504. OpenSafe.MouseButton1Down:connect(function()
  505. game.ReplicatedStorage.RemoteEvents.Safe:FireServer(game:GetService("Workspace").CodeNote.SurfaceGui.TextLabel.Text)
  506. end)
  507.  
  508. --! รคlคt#0437
  509. --GUI to LUA
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement