Advertisement
PixelTactics101

Superbomb Survival GUI

Jul 21st, 2020
403
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.57 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local Gui = Instance.new("ScreenGui")
  7. local LoadingFrame = Instance.new("Frame")
  8. local TitleLoading = Instance.new("TextLabel")
  9. local Line1 = Instance.new("Frame")
  10. local PleaseRead = Instance.new("TextLabel")
  11. local Loading = Instance.new("TextLabel")
  12. local TextButton = Instance.new("TextButton")
  13. local ShadeFrame1 = Instance.new("ImageLabel")
  14. local OpenFrame = Instance.new("ImageLabel")
  15. local Open = Instance.new("TextButton")
  16. local TextButton_2 = Instance.new("TextButton")
  17. local ShadeFrame2 = Instance.new("ImageLabel")
  18. local MainFrame = Instance.new("ImageLabel")
  19. local BombAmount = Instance.new("TextBox")
  20. local Warn1 = Instance.new("TextLabel")
  21. local Warn2 = Instance.new("TextLabel")
  22. local Title = Instance.new("TextLabel")
  23. local Line2 = Instance.new("ImageLabel")
  24. local ExecuteBombs = Instance.new("TextButton")
  25.  
  26. --Properties:
  27.  
  28. Gui.Name = "Gui"
  29. Gui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  30.  
  31. LoadingFrame.Name = "LoadingFrame"
  32. LoadingFrame.Parent = Gui
  33. LoadingFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  34. LoadingFrame.Size = UDim2.new(1, 0, 1, 0)
  35. LoadingFrame.Visible = true
  36.  
  37. TitleLoading.Name = "TitleLoading"
  38. TitleLoading.Parent = LoadingFrame
  39. TitleLoading.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  40. TitleLoading.BorderSizePixel = 0
  41. TitleLoading.Position = UDim2.new(0.101776592, 0, 0.0442260616, 0)
  42. TitleLoading.Size = UDim2.new(0, 1380, 0, 100)
  43. TitleLoading.Font = Enum.Font.GothamBold
  44. TitleLoading.Text = "PixelTactics's Super Bomb Survival GUI"
  45. TitleLoading.TextColor3 = Color3.fromRGB(0, 0, 0)
  46. TitleLoading.TextScaled = true
  47. TitleLoading.TextSize = 14.000
  48. TitleLoading.TextWrapped = true
  49.  
  50. Line1.Name = "Line1"
  51. Line1.Parent = LoadingFrame
  52. Line1.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  53. Line1.BorderSizePixel = 0
  54. Line1.Position = UDim2.new(0.353897244, 0, 0.0257985387, 0)
  55. Line1.Size = UDim2.new(0, 11, 0, 129)
  56.  
  57. PleaseRead.Name = "PleaseRead"
  58. PleaseRead.Parent = LoadingFrame
  59. PleaseRead.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  60. PleaseRead.BorderSizePixel = 10
  61. PleaseRead.Position = UDim2.new(0.212636203, 0, 0.314496338, 0)
  62. PleaseRead.Size = UDim2.new(0, 956, 0, 69)
  63. PleaseRead.Font = Enum.Font.SourceSansLight
  64. PleaseRead.Text = "Read: This works for Free Exploits and Paid Exploits."
  65. PleaseRead.TextColor3 = Color3.fromRGB(0, 0, 0)
  66. PleaseRead.TextScaled = true
  67. PleaseRead.TextSize = 14.000
  68. PleaseRead.TextWrapped = true
  69.  
  70. Loading.Name = "Loading"
  71. Loading.Parent = LoadingFrame
  72. Loading.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  73. Loading.BorderSizePixel = 0
  74. Loading.Position = UDim2.new(0.300638616, 0, 0.539311945, 0)
  75. Loading.Size = UDim2.new(0, 617, 0, 98)
  76. Loading.Font = Enum.Font.GothamBlack
  77. Loading.Text = "Loading"
  78. Loading.TextColor3 = Color3.fromRGB(190, 190, 190)
  79. Loading.TextScaled = true
  80. Loading.TextSize = 14.000
  81. Loading.TextWrapped = true
  82.  
  83. TextButton.Parent = LoadingFrame
  84. TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  85. TextButton.Position = UDim2.new(0.410030931, 0, 0.828009844, 0)
  86. TextButton.Size = UDim2.new(0, 200, 0, 50)
  87. TextButton.Font = Enum.Font.SourceSans
  88. TextButton.Text = "skip cuz this is infinite loading screen lol"
  89. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  90. TextButton.TextScaled = true
  91. TextButton.TextSize = 14.000
  92. TextButton.TextWrapped = true
  93. TextButton.MouseButton1Click:connect(function()
  94. LoadingFrame.Visible = false
  95. ShadeFrame1.Visible = true
  96. ShadeFrame2.Visible = false
  97. end)
  98.  
  99. ShadeFrame1.Name = "ShadeFrame1"
  100. ShadeFrame1.Parent = Gui
  101. ShadeFrame1.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  102. ShadeFrame1.BackgroundTransparency = 1.000
  103. ShadeFrame1.Position = UDim2.new(0.398608774, 0, 0.18427518, 0)
  104. ShadeFrame1.Size = UDim2.new(0, 231, 0, 60)
  105. ShadeFrame1.Visible = false
  106. ShadeFrame1.Image = "rbxassetid://3570695787"
  107. ShadeFrame1.ImageColor3 = Color3.fromRGB(218, 218, 218)
  108. ShadeFrame1.ScaleType = Enum.ScaleType.Slice
  109. ShadeFrame1.SliceCenter = Rect.new(100, 100, 100, 100)
  110. ShadeFrame1.SliceScale = 0.120
  111. ShadeFrame1.Visible = false
  112.  
  113. OpenFrame.Name = "OpenFrame"
  114. OpenFrame.Parent = ShadeFrame1
  115. OpenFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  116. OpenFrame.BackgroundTransparency = 1.000
  117. OpenFrame.Position = UDim2.new(-0.000153401867, 0, -0.156570196, 0)
  118. OpenFrame.Size = UDim2.new(0, 231, 0, 60)
  119. OpenFrame.Image = "rbxassetid://3570695787"
  120. OpenFrame.ScaleType = Enum.ScaleType.Slice
  121. OpenFrame.SliceCenter = Rect.new(100, 100, 100, 100)
  122. OpenFrame.SliceScale = 0.120
  123.  
  124. Open.Name = "Open"
  125. Open.Parent = OpenFrame
  126. Open.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  127. Open.BackgroundTransparency = 1.000
  128. Open.Position = UDim2.new(0, 0, 0.0163935348, 0)
  129. Open.Size = UDim2.new(0, 231, 0, 69)
  130. Open.Font = Enum.Font.Cartoon
  131. Open.Text = "Open"
  132. Open.TextColor3 = Color3.fromRGB(162, 162, 162)
  133. Open.TextSize = 60.000
  134. Open.TextWrapped = true
  135. Open.TextYAlignment = Enum.TextYAlignment.Top
  136. Open.Visible = true
  137. Open.MouseButton1Click:connect(function()
  138. Open.Visible = false
  139. TextButton_2.Visible = true
  140. ShadeFrame2.Visible = true
  141. end)
  142.  
  143. TextButton_2.Parent = OpenFrame
  144. TextButton_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  145. TextButton_2.BackgroundTransparency = 1.000
  146. TextButton_2.Size = UDim2.new(0, 231, 0, 69)
  147. TextButton_2.Visible = false
  148. TextButton_2.Font = Enum.Font.Cartoon
  149. TextButton_2.Text = "Close"
  150. TextButton_2.TextColor3 = Color3.fromRGB(162, 162, 162)
  151. TextButton_2.TextSize = 60.000
  152. TextButton_2.TextWrapped = true
  153. TextButton_2.TextYAlignment = Enum.TextYAlignment.Top
  154. TextButton_2.MouseButton1Click:connect(function()
  155. ShadeFrame2.Visible = false
  156. Open.Visible = true
  157. TextButton_2.Visible = false
  158. end)
  159.  
  160. ShadeFrame2.Name = "ShadeFrame2"
  161. ShadeFrame2.Parent = Gui
  162. ShadeFrame2.BackgroundColor3 = Color3.fromRGB(209, 209, 209)
  163. ShadeFrame2.BackgroundTransparency = 1.000
  164. ShadeFrame2.Position = UDim2.new(0.343791723, 0, 0.285012335, 0)
  165. ShadeFrame2.Size = UDim2.new(0, 651, 0, 363)
  166. ShadeFrame2.Image = "rbxassetid://3570695787"
  167. ShadeFrame2.ImageColor3 = Color3.fromRGB(209, 209, 209)
  168. ShadeFrame2.ScaleType = Enum.ScaleType.Slice
  169. ShadeFrame2.SliceCenter = Rect.new(100, 100, 100, 100)
  170. ShadeFrame2.SliceScale = 0.120
  171. ShadeFrame2.Visible = false
  172.  
  173. MainFrame.Name = "MainFrame"
  174. MainFrame.Parent = ShadeFrame2
  175. MainFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  176. MainFrame.BackgroundTransparency = 1.000
  177. MainFrame.Position = UDim2.new(-0.00135332346, 0, -0.0297851413, 0)
  178. MainFrame.Size = UDim2.new(0, 651, 0, 363)
  179. MainFrame.Image = "rbxassetid://3570695787"
  180. MainFrame.ScaleType = Enum.ScaleType.Slice
  181. MainFrame.SliceCenter = Rect.new(100, 100, 100, 100)
  182. MainFrame.SliceScale = 0.120
  183.  
  184. BombAmount.Name = "BombAmount"
  185. BombAmount.Parent = MainFrame
  186. BombAmount.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  187. BombAmount.BorderSizePixel = 5
  188. BombAmount.Position = UDim2.new(0.0537634417, 0, 0.556473792, 0)
  189. BombAmount.Size = UDim2.new(0, 582, 0, 50)
  190. BombAmount.Font = Enum.Font.SourceSans
  191. BombAmount.PlaceholderText = "Amount Of Bombs"
  192. BombAmount.Text = ""
  193. BombAmount.TextColor3 = Color3.fromRGB(0, 0, 0)
  194. BombAmount.TextScaled = true
  195. BombAmount.TextSize = 14.000
  196. BombAmount.TextWrapped = true
  197.  
  198. Warn1.Name = "Warn1"
  199. Warn1.Parent = MainFrame
  200. Warn1.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  201. Warn1.BorderSizePixel = 0
  202. Warn1.Position = UDim2.new(0.176651299, 0, 0.873278141, 0)
  203. Warn1.Size = UDim2.new(0, 421, 0, 34)
  204. Warn1.Font = Enum.Font.SourceSans
  205. Warn1.Text = "WARNING: If you put too much amount of Bombs, you have a chance to crash."
  206. Warn1.TextColor3 = Color3.fromRGB(0, 0, 0)
  207. Warn1.TextScaled = true
  208. Warn1.TextSize = 14.000
  209. Warn1.TextWrapped = true
  210.  
  211. Warn2.Name = "Warn2"
  212. Warn2.Parent = MainFrame
  213. Warn2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  214. Warn2.BorderSizePixel = 0
  215. Warn2.Position = UDim2.new(0.135176644, 0, 0.314049572, 0)
  216. Warn2.Size = UDim2.new(0, 475, 0, 50)
  217. Warn2.Font = Enum.Font.SourceSans
  218. Warn2.Text = "You have a chance to get banned, so please use this on an Alternate/ALT account."
  219. Warn2.TextColor3 = Color3.fromRGB(0, 0, 0)
  220. Warn2.TextSize = 14.000
  221.  
  222. Title.Name = "Title"
  223. Title.Parent = MainFrame
  224. Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  225. Title.BorderSizePixel = 0
  226. Title.Position = UDim2.new(0, 0, 0.0275482088, 0)
  227. Title.Size = UDim2.new(0, 651, 0, 81)
  228. Title.Font = Enum.Font.SourceSans
  229. Title.Text = "PixelTactics's Superbomb Survival GUI"
  230. Title.TextColor3 = Color3.fromRGB(0, 0, 0)
  231. Title.TextScaled = true
  232. Title.TextSize = 14.000
  233. Title.TextWrapped = true
  234.  
  235. Line2.Name = "Line2"
  236. Line2.Parent = MainFrame
  237. Line2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  238. Line2.BackgroundTransparency = 1.000
  239. Line2.Position = UDim2.new(0.362519205, 0, 0.0275482088, 0)
  240. Line2.Size = UDim2.new(0, 6, 0, 79)
  241. Line2.Image = "rbxassetid://3570695787"
  242. Line2.ImageColor3 = Color3.fromRGB(0, 0, 0)
  243. Line2.ScaleType = Enum.ScaleType.Slice
  244. Line2.SliceCenter = Rect.new(100, 100, 100, 100)
  245. Line2.SliceScale = 0.120
  246.  
  247. ExecuteBombs.Name = "Execute Bombs"
  248. ExecuteBombs.Parent = MainFrame
  249. ExecuteBombs.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  250. ExecuteBombs.BorderSizePixel = 0
  251. ExecuteBombs.Position = UDim2.new(0.345622122, 0, 0.735537171, 0)
  252. ExecuteBombs.Size = UDim2.new(0, 200, 0, 43)
  253. ExecuteBombs.Font = Enum.Font.SourceSans
  254. ExecuteBombs.Text = "Execute Bombs"
  255. ExecuteBombs.TextColor3 = Color3.fromRGB(0, 0, 0)
  256. ExecuteBombs.TextScaled = true
  257. ExecuteBombs.TextSize = 14.000
  258. ExecuteBombs.TextWrapped = true
  259. ExecuteBombs.MouseButton1Click:Connect(function()
  260. for i= 1, BombAmount.Text do
  261. local oh1 = 2
  262. local oh2 = 1
  263. local oh3 = "skillScript"
  264. game.Storage.Remotes.skillUse:FireServer(oh1, oh2, oh3)
  265. end
  266. end)
  267.  
  268. ShadeFrame2.Draggable = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement