skinkillaz

destruction sim

Sep 13th, 2018
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.48 KB | None | 0 0
  1. --[[
  2. Infinite Backpack Name is Infinite Storage
  3. Black Hole Bomb is Black Hole Bomb
  4. Black Hole Launcher is Black Hole Launcher
  5. ]]--
  6.  
  7.  
  8.  
  9.  
  10. local howmany = 5 -- Number here for how many items you want to duplicate
  11.  
  12. wait(0.01)
  13.  
  14. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  15. Text = "Ran, Made GUI by Atom!";
  16. Color = Color3.new(0, 185, 0);
  17. Font = Enum.Font.SourceSansBold;
  18. FontSize = Enum.FontSize.Size24;
  19. })
  20. wait(1)
  21. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  22. Text = "Scripts by JlmmyKewlKiDz and ObitoXDm8OI And the other GUI by TeZxRezzy and Reallifepeople! and Baconie Show them support!";
  23. Color = Color3.new(170, 0, 0);
  24. Font = Enum.Font.SourceSansBold;
  25. FontSize = Enum.FontSize.Size24;
  26. })
  27.  
  28. wait(1)
  29.  
  30. game.StarterGui:SetCore("SendNotification", {
  31. Title = "Loaded!";
  32. Text = "Please read chat for credits, and configure stuff in the script!";
  33. })
  34.  
  35. -- Made by Atom
  36.  
  37. -- Scripts to JlmmyKewlKiDz, ObitoXDm8OI, Baconie
  38.  
  39.  
  40. local Name = game.Players.LocalPlayer.Name
  41.  
  42. local DestructionSim = Instance.new("ScreenGui")
  43. local Page1 = Instance.new("Frame")
  44. local BGDETAIL = Instance.new("Frame")
  45. local DetailLabel = Instance.new("TextLabel")
  46. local Shop = Instance.new("TextButton")
  47. local Highway = Instance.new("TextButton")
  48. local Site = Instance.new("TextButton")
  49. local Home = Instance.new("TextButton")
  50. local Ship = Instance.new("TextButton")
  51. local Space = Instance.new("TextButton")
  52. local Camp = Instance.new("TextButton")
  53. local Pillar = Instance.new("TextButton")
  54. local Castle = Instance.new("TextButton")
  55. local Empire = Instance.new("TextButton")
  56. local Exit = Instance.new("TextButton")
  57. local Farm = Instance.new("TextButton")
  58. local Teleports = Instance.new("TextLabel")
  59. local Sell = Instance.new("TextButton")
  60. local Next = Instance.new("TextButton")
  61. local Number1 = Instance.new("TextLabel")
  62. local Page2 = Instance.new("Frame")
  63. local BGDETAIL2 = Instance.new("Frame")
  64. local DetailLabel2 = Instance.new("TextLabel")
  65. local AutoSell = Instance.new("TextButton")
  66. local Destroy = Instance.new("TextButton")
  67. local Functions = Instance.new("TextLabel")
  68. local Previous = Instance.new("TextButton")
  69. local Number2 = Instance.new("TextLabel")
  70. local SellBrick = Instance.new("TextButton")
  71. local Dupe = Instance.new("TextButton")
  72. local Bomb = Instance.new("TextButton")
  73. local Backpack = Instance.new("TextButton")
  74. local Gun = Instance.new("TextButton")
  75. local TextBox = Instance.new("TextBox")
  76.  
  77. DestructionSim.Name = "DestructionSim"
  78. DestructionSim.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  79.  
  80. Page1.Name = "Page1"
  81. Page1.Parent = DestructionSim
  82. Page1.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  83. Page1.BorderColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  84. Page1.Position = UDim2.new(0.0965853631, 0, 0.404382467, 0)
  85. Page1.Size = UDim2.new(0, 270, 0, 257)
  86. Page1.Active = true
  87. Page1.Draggable = true
  88.  
  89. BGDETAIL.Name = "BGDETAIL"
  90. BGDETAIL.Parent = Page1
  91. BGDETAIL.BackgroundColor3 = Color3.new(0.458824, 0.792157, 1)
  92. BGDETAIL.BorderColor3 = Color3.new(0.352941, 0.643137, 0.807843)
  93. BGDETAIL.Size = UDim2.new(0, 270, 0, 30)
  94.  
  95. DetailLabel.Name = "DetailLabel"
  96. DetailLabel.Parent = BGDETAIL
  97. DetailLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  98. DetailLabel.BackgroundTransparency = 1
  99. DetailLabel.Position = UDim2.new(0.0925925896, 0, 0, 0)
  100. DetailLabel.Size = UDim2.new(0, 235, 0, 30)
  101. DetailLabel.Font = Enum.Font.SourceSansBold
  102. DetailLabel.Text = "Destruction Simulator"
  103. DetailLabel.TextColor3 = Color3.new(1, 1, 1)
  104. DetailLabel.TextScaled = true
  105. DetailLabel.TextSize = 14
  106. DetailLabel.TextWrapped = true
  107.  
  108. Shop.Name = "Shop"
  109. Shop.Parent = Page1
  110. Shop.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  111. Shop.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  112. Shop.Position = UDim2.new(0.0333333611, 0, 0.192288339, 0)
  113. Shop.Size = UDim2.new(0, 107, 0, 22)
  114. Shop.Font = Enum.Font.SourceSansBold
  115. Shop.Text = "Teleport to Shop"
  116. Shop.TextColor3 = Color3.new(1, 1, 1)
  117. Shop.TextScaled = true
  118. Shop.TextSize = 14
  119. Shop.TextWrapped = true
  120.  
  121. Shop.MouseButton1Click:connect(function()
  122. game.Workspace[Name].HumanoidRootPart.CFrame = CFrame.new(-52.7326279, 3.45200205, -556.515015)
  123. end)
  124.  
  125. Highway.Name = "Highway"
  126. Highway.Parent = Page1
  127. Highway.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  128. Highway.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  129. Highway.Position = UDim2.new(0.0333333313, 0, 0.305615187, 0)
  130. Highway.Size = UDim2.new(0, 107, 0, 22)
  131. Highway.Font = Enum.Font.SourceSansBold
  132. Highway.Text = "Highway Racing"
  133. Highway.TextColor3 = Color3.new(1, 1, 1)
  134. Highway.TextScaled = true
  135. Highway.TextSize = 14
  136. Highway.TextWrapped = true
  137.  
  138. Highway.MouseButton1Click:connect(function()
  139. game.Workspace[Name].HumanoidRootPart.CFrame = CFrame.new(19.63, 3.35, -434.96)
  140. end)
  141.  
  142. Site.Name = "Site"
  143. Site.Parent = Page1
  144. Site.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  145. Site.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  146. Site.Position = UDim2.new(0.562962949, 0, 0.307392985, 0)
  147. Site.Size = UDim2.new(0, 108, 0, 22)
  148. Site.Font = Enum.Font.SourceSansBold
  149. Site.Text = "Construction Site"
  150. Site.TextColor3 = Color3.new(1, 1, 1)
  151. Site.TextScaled = true
  152. Site.TextSize = 14
  153. Site.TextWrapped = true
  154.  
  155. Site.MouseButton1Click:connect(function()
  156. game.Workspace[Name].HumanoidRootPart.CFrame = CFrame.new(-89, 3, -452)
  157. end)
  158.  
  159. Home.Name = "Home"
  160. Home.Parent = Page1
  161. Home.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  162. Home.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  163. Home.Position = UDim2.new(0.567841053, 0, 0.421485007, 0)
  164. Home.Size = UDim2.new(0, 107, 0, 22)
  165. Home.Font = Enum.Font.SourceSansBold
  166. Home.Text = "Happy Home"
  167. Home.TextColor3 = Color3.new(1, 1, 1)
  168. Home.TextScaled = true
  169. Home.TextSize = 14
  170. Home.TextWrapped = true
  171.  
  172. Home.MouseButton1Click:connect(function()
  173. game.Workspace[Name].HumanoidRootPart.CFrame = CFrame.new(-88, 3.5, -150)
  174. end)
  175.  
  176. Ship.Name = "Ship"
  177. Ship.Parent = Page1
  178. Ship.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  179. Ship.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  180. Ship.Position = UDim2.new(0.0333333351, 0, 0.536964953, 0)
  181. Ship.Size = UDim2.new(0, 107, 0, 22)
  182. Ship.Font = Enum.Font.SourceSansBold
  183. Ship.Text = "Ship Dock"
  184. Ship.TextColor3 = Color3.new(1, 1, 1)
  185. Ship.TextScaled = true
  186. Ship.TextSize = 14
  187. Ship.TextWrapped = true
  188.  
  189. Ship.MouseButton1Click:connect(function()
  190. game.Workspace[Name].HumanoidRootPart.CFrame = CFrame.new(18.19, 3.35, 144)
  191. end)
  192.  
  193. Space.Name = "Space"
  194. Space.Parent = Page1
  195. Space.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  196. Space.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  197. Space.Position = UDim2.new(0.567841053, 0, 0.538166225, 0)
  198. Space.Size = UDim2.new(0, 107, 0, 22)
  199. Space.Font = Enum.Font.SourceSansBold
  200. Space.Text = "Space Travel"
  201. Space.TextColor3 = Color3.new(1, 1, 1)
  202. Space.TextScaled = true
  203. Space.TextSize = 14
  204. Space.TextWrapped = true
  205.  
  206. Space.MouseButton1Click:connect(function()
  207. game.Workspace[Name].HumanoidRootPart.CFrame = CFrame.new(-89.05, 3.35, 144)
  208. end)
  209.  
  210. Camp.Name = "Camp"
  211. Camp.Parent = Page1
  212. Camp.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  213. Camp.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  214. Camp.Position = UDim2.new(0.0345077515, 0, 0.658738494, 0)
  215. Camp.Size = UDim2.new(0, 107, 0, 22)
  216. Camp.Font = Enum.Font.SourceSansBold
  217. Camp.Text = "Military Camp"
  218. Camp.TextColor3 = Color3.new(1, 1, 1)
  219. Camp.TextScaled = true
  220. Camp.TextSize = 14
  221. Camp.TextWrapped = true
  222.  
  223. Camp.MouseButton1Click:connect(function()
  224. game.Workspace[Name].HumanoidRootPart.CFrame = CFrame.new(17.74, 3.35, 453.33)
  225. end)
  226.  
  227. Pillar.Name = "Pillar"
  228. Pillar.Parent = Page1
  229. Pillar.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  230. Pillar.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  231. Pillar.Position = UDim2.new(0.56413734, 0, 0.658738494, 0)
  232. Pillar.Size = UDim2.new(0, 107, 0, 22)
  233. Pillar.Font = Enum.Font.SourceSansBold
  234. Pillar.Text = "Pyramid & Pillars"
  235. Pillar.TextColor3 = Color3.new(1, 1, 1)
  236. Pillar.TextScaled = true
  237. Pillar.TextSize = 14
  238. Pillar.TextWrapped = true
  239.  
  240. Pillar.MouseButton1Click:connect(function()
  241. game.Workspace[Name].HumanoidRootPart.CFrame = CFrame.new(-86.08, 3.35, 446.63)
  242. end)
  243.  
  244. Castle.Name = "Castle"
  245. Castle.Parent = Page1
  246. Castle.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  247. Castle.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  248. Castle.Position = UDim2.new(0.0333333351, 0, 0.774319053, 0)
  249. Castle.Size = UDim2.new(0, 107, 0, 22)
  250. Castle.Font = Enum.Font.SourceSansBold
  251. Castle.Text = "Castle"
  252. Castle.TextColor3 = Color3.new(1, 1, 1)
  253. Castle.TextScaled = true
  254. Castle.TextSize = 14
  255. Castle.TextWrapped = true
  256.  
  257. Castle.MouseButton1Click:connect(function()
  258. game.Workspace[Name].HumanoidRootPart.CFrame = CFrame.new(18.35, 3.35, 774.2)
  259. end)
  260.  
  261. Empire.Name = "Empire"
  262. Empire.Parent = Page1
  263. Empire.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  264. Empire.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  265. Empire.Position = UDim2.new(0.56413734, 0, 0.775470018, 0)
  266. Empire.Size = UDim2.new(0, 107, 0, 22)
  267. Empire.Font = Enum.Font.SourceSansBold
  268. Empire.Text = "Empire State & HQ"
  269. Empire.TextColor3 = Color3.new(1, 1, 1)
  270. Empire.TextScaled = true
  271. Empire.TextSize = 14
  272. Empire.TextWrapped = true
  273.  
  274. Empire.MouseButton1Click:connect(function()
  275. game.Workspace[Name].HumanoidRootPart.CFrame = CFrame.new(-89.75, 3.35, 747.22)
  276. end)
  277.  
  278. Exit.Name = "Exit"
  279. Exit.Parent = Page1
  280. Exit.BackgroundColor3 = Color3.new(0.458824, 0.792157, 1)
  281. Exit.BorderSizePixel = 0
  282. Exit.Size = UDim2.new(0, 24, 0, 30)
  283. Exit.Font = Enum.Font.SourceSansBold
  284. Exit.Text = "X"
  285. Exit.TextColor3 = Color3.new(1, 1, 1)
  286. Exit.TextScaled = true
  287. Exit.TextSize = 14
  288. Exit.TextWrapped = true
  289.  
  290. Exit.MouseButton1Click:connect(function()
  291. DestructionSim:Destroy()
  292. end)
  293.  
  294. Farm.Name = "Farm"
  295. Farm.Parent = Page1
  296. Farm.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  297. Farm.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  298. Farm.Position = UDim2.new(0.0345077515, 0, 0.421447635, 0)
  299. Farm.Size = UDim2.new(0, 107, 0, 22)
  300. Farm.Font = Enum.Font.SourceSansBold
  301. Farm.Text = "Farm"
  302. Farm.TextColor3 = Color3.new(1, 1, 1)
  303. Farm.TextScaled = true
  304. Farm.TextSize = 14
  305. Farm.TextWrapped = true
  306.  
  307. Farm.MouseButton1Click:connect(function()
  308. game.Workspace[Name].HumanoidRootPart.CFrame = CFrame.new(16.23, 3.35, -152.98)
  309. end)
  310.  
  311. Teleports.Name = "Teleports"
  312. Teleports.Parent = Page1
  313. Teleports.BackgroundColor3 = Color3.new(1, 1, 1)
  314. Teleports.BackgroundTransparency = 1
  315. Teleports.Position = UDim2.new(0.42592591, 0, 0.116731517, 0)
  316. Teleports.Size = UDim2.new(0, 38, 0, 15)
  317. Teleports.Font = Enum.Font.SourceSansBold
  318. Teleports.Text = "Teleports"
  319. Teleports.TextColor3 = Color3.new(1, 1, 1)
  320. Teleports.TextSize = 14
  321.  
  322. Sell.Name = "Sell"
  323. Sell.Parent = Page1
  324. Sell.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  325. Sell.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  326. Sell.Position = UDim2.new(0.566666722, 0, 0.192288339, 0)
  327. Sell.Size = UDim2.new(0, 107, 0, 22)
  328. Sell.Font = Enum.Font.SourceSansBold
  329. Sell.Text = "Teleport to Sell"
  330. Sell.TextColor3 = Color3.new(1, 1, 1)
  331. Sell.TextScaled = true
  332. Sell.TextSize = 14
  333. Sell.TextWrapped = true
  334.  
  335. Sell.MouseButton1Click:connect(function()
  336. game.Workspace[Name].HumanoidRootPart.CFrame = CFrame.new(-14.55, 3.86, -558.21)
  337. end)
  338.  
  339.  
  340. Next.Name = "Next"
  341. Next.Parent = Page1
  342. Next.BackgroundColor3 = Color3.new(1, 1, 1)
  343. Next.BackgroundTransparency = 1
  344. Next.Position = UDim2.new(0.566666603, 0, 0.922178984, 0)
  345. Next.Size = UDim2.new(0, 16, 0, 20)
  346. Next.Font = Enum.Font.SourceSansBold
  347. Next.Text = "->"
  348. Next.TextColor3 = Color3.new(1, 1, 1)
  349. Next.TextSize = 14
  350.  
  351. Next.MouseButton1Click:connect(function()
  352. Page1.Visible = false
  353. Page1.Active = false
  354. Page1.Draggable = false
  355. Page2.Visible = true
  356. Page2.Active = true
  357. Page2.Draggable = true
  358. end)
  359.  
  360. Number1.Name = "Number1"
  361. Number1.Parent = Page1
  362. Number1.BackgroundColor3 = Color3.new(1, 1, 1)
  363. Number1.BackgroundTransparency = 1
  364. Number1.Position = UDim2.new(0.470370412, 0, 0.933852136, 0)
  365. Number1.Size = UDim2.new(0, 14, 0, 14)
  366. Number1.Font = Enum.Font.SourceSans
  367. Number1.Text = "1"
  368. Number1.TextColor3 = Color3.new(1, 1, 1)
  369. Number1.TextSize = 14
  370.  
  371. Page2.Name = "Page2"
  372. Page2.Parent = DestructionSim
  373. Page2.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  374. Page2.BorderColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  375. Page2.Position = UDim2.new(0.418536544, 0, 0.384462178, 0)
  376. Page2.Size = UDim2.new(0, 270, 0, 257)
  377. Page2.Visible = false
  378.  
  379. BGDETAIL2.Name = "BGDETAIL2"
  380. BGDETAIL2.Parent = Page2
  381. BGDETAIL2.BackgroundColor3 = Color3.new(0.458824, 0.792157, 1)
  382. BGDETAIL2.BorderColor3 = Color3.new(0.352941, 0.643137, 0.807843)
  383. BGDETAIL2.Size = UDim2.new(0, 270, 0, 30)
  384.  
  385. DetailLabel2.Name = "DetailLabel2"
  386. DetailLabel2.Parent = BGDETAIL2
  387. DetailLabel2.BackgroundColor3 = Color3.new(1, 1, 1)
  388. DetailLabel2.BackgroundTransparency = 1
  389. DetailLabel2.Position = UDim2.new(0.092592597, 0, 0, 0)
  390. DetailLabel2.Size = UDim2.new(0, 235, 0, 30)
  391. DetailLabel2.Font = Enum.Font.SourceSansBold
  392. DetailLabel2.Text = "Destruction Simulator"
  393. DetailLabel2.TextColor3 = Color3.new(1, 1, 1)
  394. DetailLabel2.TextScaled = true
  395. DetailLabel2.TextSize = 14
  396. DetailLabel2.TextWrapped = true
  397.  
  398. AutoSell.Name = "AutoSell"
  399. AutoSell.Parent = Page2
  400. AutoSell.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  401. AutoSell.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  402. AutoSell.Position = UDim2.new(0.0313919783, 0, 0.190970525, 0)
  403. AutoSell.Size = UDim2.new(0, 107, 0, 22)
  404. AutoSell.Font = Enum.Font.SourceSansBold
  405. AutoSell.Text = "Auto Sell Bricks"
  406. AutoSell.TextColor3 = Color3.new(1, 1, 1)
  407. AutoSell.TextScaled = true
  408. AutoSell.TextSize = 14
  409. AutoSell.TextWrapped = true
  410.  
  411. AutoSell.MouseButton1Click:connect(function()
  412. local remote = game["ReplicatedStorage"]["Remotes"]["sellBricks"]
  413. while true do
  414. remote:FireServer()
  415. wait(12.5)
  416. end
  417. end)
  418.  
  419. Destroy.Name = "Destroy"
  420. Destroy.Parent = Page2
  421. Destroy.BackgroundColor3 = Color3.new(0.458824, 0.792157, 1)
  422. Destroy.BorderSizePixel = 0
  423. Destroy.Size = UDim2.new(0, 24, 0, 30)
  424. Destroy.Font = Enum.Font.SourceSansBold
  425. Destroy.Text = "X"
  426. Destroy.TextColor3 = Color3.new(1, 1, 1)
  427. Destroy.TextScaled = true
  428. Destroy.TextSize = 14
  429. Destroy.TextWrapped = true
  430.  
  431. Destroy.MouseButton1Click:connect(function()
  432. DestructionSim:Destroy()
  433. end)
  434.  
  435. Functions.Name = "Functions"
  436. Functions.Parent = Page2
  437. Functions.BackgroundColor3 = Color3.new(1, 1, 1)
  438. Functions.BackgroundTransparency = 1
  439. Functions.Position = UDim2.new(0.42592591, 0, 0.116731517, 0)
  440. Functions.Size = UDim2.new(0, 38, 0, 15)
  441. Functions.Font = Enum.Font.SourceSansBold
  442. Functions.Text = "Functions"
  443. Functions.TextColor3 = Color3.new(1, 1, 1)
  444. Functions.TextSize = 14
  445.  
  446. Previous.Name = "Previous"
  447. Previous.Parent = Page2
  448. Previous.BackgroundColor3 = Color3.new(1, 1, 1)
  449. Previous.BackgroundTransparency = 1
  450. Previous.Position = UDim2.new(0.366666615, 0, 0.922178984, 0)
  451. Previous.Size = UDim2.new(0, 16, 0, 20)
  452. Previous.Font = Enum.Font.SourceSansBold
  453. Previous.Text = "<-"
  454. Previous.TextColor3 = Color3.new(1, 1, 1)
  455. Previous.TextSize = 14
  456.  
  457. Previous.MouseButton1Click:connect(function()
  458. Page2.Visible = false
  459. Page2.Active = false
  460. Page2.Draggable = false
  461. Page1.Visible = true
  462. Page1.Active = true
  463. Page1.Draggable = true
  464. end)
  465.  
  466. Number2.Name = "Number2"
  467. Number2.Parent = Page2
  468. Number2.BackgroundColor3 = Color3.new(1, 1, 1)
  469. Number2.BackgroundTransparency = 1
  470. Number2.Position = UDim2.new(0.470370412, 0, 0.933852136, 0)
  471. Number2.Size = UDim2.new(0, 14, 0, 14)
  472. Number2.Font = Enum.Font.SourceSans
  473. Number2.Text = "2"
  474. Number2.TextColor3 = Color3.new(1, 1, 1)
  475. Number2.TextSize = 14
  476.  
  477. SellBrick.Name = "SellBrick"
  478. SellBrick.Parent = Page2
  479. SellBrick.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  480. SellBrick.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  481. SellBrick.Position = UDim2.new(0.570425451, 0, 0.190970525, 0)
  482. SellBrick.Size = UDim2.new(0, 107, 0, 22)
  483. SellBrick.Font = Enum.Font.SourceSansBold
  484. SellBrick.Text = "Sell Bricks"
  485. SellBrick.TextColor3 = Color3.new(1, 1, 1)
  486. SellBrick.TextScaled = true
  487. SellBrick.TextSize = 14
  488. SellBrick.TextWrapped = true
  489.  
  490. SellBrick.MouseButton1Click:connect(function()
  491. local remote = game["ReplicatedStorage"]["Remotes"]["sellBricks"]
  492. remote:FireServer()
  493. end)
  494.  
  495. Dupe.Name = "Dupe"
  496. Dupe.Parent = Page2
  497. Dupe.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  498. Dupe.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  499. Dupe.Position = UDim2.new(0.0296296291, 0, 0.315175086, 0)
  500. Dupe.Size = UDim2.new(0, 252, 0, 22)
  501. Dupe.Font = Enum.Font.SourceSansBold
  502. Dupe.Text = "Dupe Launchers And Bombs"
  503. Dupe.TextColor3 = Color3.new(1, 1, 1)
  504. Dupe.TextScaled = true
  505. Dupe.TextSize = 14
  506. Dupe.TextWrapped = true
  507.  
  508. Dupe.MouseButton1Click:connect(function()
  509. for i = 1, howmany do
  510.  
  511. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  512. if (v:IsA("Tool")) then
  513. v.Parent = game.Players.LocalPlayer
  514. end
  515. end
  516.  
  517. wait(0.5)
  518.  
  519. game.Players.LocalPlayer.Character.Head.Neck:Destroy()
  520.  
  521. wait(8)
  522. end
  523. wait(1)
  524.  
  525. for _,v in pairs(game.Players.LocalPlayer:GetChildren()) do
  526. if (v:IsA("Tool")) then
  527. v.Parent = game.Players.LocalPlayer.Backpack
  528. end
  529. end
  530. end)
  531.  
  532. Bomb.Name = "Bomb"
  533. Bomb.Parent = Page2
  534. Bomb.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  535. Bomb.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  536. Bomb.Position = UDim2.new(0.0296296291, 0, 0.560311258, 0)
  537. Bomb.Size = UDim2.new(0, 83, 0, 22)
  538. Bomb.Font = Enum.Font.SourceSansBold
  539. Bomb.Text = "Equip Bomb"
  540. Bomb.TextColor3 = Color3.new(1, 1, 1)
  541. Bomb.TextScaled = true
  542. Bomb.TextSize = 14
  543. Bomb.TextWrapped = true
  544.  
  545. Backpack.Name = "Backpack"
  546. Backpack.Parent = Page2
  547. Backpack.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  548. Backpack.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  549. Backpack.Position = UDim2.new(0.655555606, 0, 0.560311258, 0)
  550. Backpack.Size = UDim2.new(0, 83, 0, 22)
  551. Backpack.Font = Enum.Font.SourceSansBold
  552. Backpack.Text = "Equip Backpack"
  553. Backpack.TextColor3 = Color3.new(1, 1, 1)
  554. Backpack.TextScaled = true
  555. Backpack.TextSize = 14
  556. Backpack.TextWrapped = true
  557.  
  558. Gun.Name = "Gun"
  559. Gun.Parent = Page2
  560. Gun.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  561. Gun.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  562. Gun.Position = UDim2.new(0.366666675, 0, 0.560311258, 0)
  563. Gun.Size = UDim2.new(0, 70, 0, 22)
  564. Gun.Font = Enum.Font.SourceSansBold
  565. Gun.Text = "Equip Gun"
  566. Gun.TextColor3 = Color3.new(1, 1, 1)
  567. Gun.TextScaled = true
  568. Gun.TextSize = 14
  569. Gun.TextWrapped = true
  570.  
  571. TextBox.Parent = Page2
  572. TextBox.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  573. TextBox.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  574. TextBox.Position = UDim2.new(0.125925928, 0, 0.431906581, 0)
  575. TextBox.Size = UDim2.new(0, 200, 0, 22)
  576. TextBox.Font = Enum.Font.SourceSansBold
  577. TextBox.PlaceholderColor3 = Color3.new(1, 1, 1)
  578. TextBox.Text = "Equipment Name Here [Cap Sensitive]"
  579. TextBox.TextColor3 = Color3.new(1, 1, 1)
  580. TextBox.TextScaled = true
  581. TextBox.TextSize = 14
  582. TextBox.TextWrapped = true
  583.  
  584. Bomb.MouseButton1Click:connect(function()
  585. local A_1 = "Bomb"
  586. local A_2 = TextBox.Text
  587. local Event = game:GetService("ReplicatedStorage").Remotes.equipItem
  588. Event:FireServer(A_1, A_2)
  589. end)
  590.  
  591. Gun.MouseButton1Click:connect(function()
  592. local A_1 = "Launcher"
  593. local A_2 = TextBox.Text
  594. local Event = game:GetService("ReplicatedStorage").Remotes.equipItem
  595. Event:FireServer(A_1, A_2)
  596. end)
  597.  
  598. Backpack.MouseButton1Click:connect(function()
  599. local A_1 = "Backpack"
  600. local A_2 = TextBox.Text
  601. local Event = game:GetService("ReplicatedStorage").Remotes.equipItem
  602. Event:FireServer(A_1, A_2)
  603. end)
Add Comment
Please, Sign In to add comment