Advertisement
robloxguy988

Untitled

Apr 6th, 2019
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.45 KB | None | 0 0
  1. -- Instances:
  2. local DoomspireBrickbattle = Instance.new("ScreenGui")
  3. local OpenGui = Instance.new("Frame")
  4. local OpenButton = Instance.new("TextButton")
  5. local MainGui = Instance.new("Frame")
  6. local Title = Instance.new("TextLabel")
  7. local TeleportFrame = Instance.new("ScrollingFrame")
  8. local Green = Instance.new("TextButton")
  9. local Red = Instance.new("TextButton")
  10. local Yellow = Instance.new("TextButton")
  11. local Blue = Instance.new("TextButton")
  12. local Teleports = Instance.new("TextLabel")
  13. local ESP = Instance.new("TextButton")
  14. local CloseMain = Instance.new("TextButton")
  15.  
  16. --Properties:
  17. DoomspireBrickbattle.Name = "Doomspire Brickbattle"
  18. DoomspireBrickbattle.Parent = game.CoreGui
  19. DoomspireBrickbattle.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  20.  
  21.  
  22. MainGui.Active = true
  23. MainGui.Draggable = true
  24.  
  25.  
  26. OpenGui.Name = "OpenGui"
  27. OpenGui.Parent = DoomspireBrickbattle
  28. OpenGui.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118)
  29. OpenGui.BackgroundTransparency = 1
  30. OpenGui.BorderSizePixel = 0
  31. OpenGui.Position = UDim2.new(0, 0, 0.493887544, 0)
  32. OpenGui.Size = UDim2.new(0, 72, 0, 25)
  33. OpenGui.Visible = false
  34.  
  35. OpenButton.Name = "OpenButton"
  36. OpenButton.Parent = OpenGui
  37. OpenButton.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118)
  38. OpenButton.BackgroundTransparency = 0.30000001192093
  39. OpenButton.Size = UDim2.new(0, 72, 0, 25)
  40. OpenButton.Font = Enum.Font.Cartoon
  41. OpenButton.Text = "Open"
  42. OpenButton.TextColor3 = Color3.new(1, 1, 1)
  43. OpenButton.TextScaled = true
  44. OpenButton.TextSize = 14
  45. OpenButton.TextWrapped = true
  46. OpenButton.MouseButton1Click:connect (function()
  47. OpenGui.Visible = false
  48. MainGui.Visible = true
  49. end)
  50.  
  51. MainGui.Name = "MainGui"
  52. MainGui.Parent = DoomspireBrickbattle
  53. MainGui.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118)
  54. MainGui.BackgroundTransparency = 0.30000001192093
  55. MainGui.BorderSizePixel = 0
  56. MainGui.Position = UDim2.new(0.350439876, 0, 0.342298269, 0)
  57. MainGui.Size = UDim2.new(0, 407, 0, 257)
  58. MainGui.Visible = false
  59.  
  60. Title.Name = "Title"
  61. Title.Parent = MainGui
  62. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  63. Title.BackgroundTransparency = 1
  64. Title.BorderSizePixel = 0
  65. Title.Size = UDim2.new(0, 407, 0, 50)
  66. Title.Font = Enum.Font.Cartoon
  67. Title.Text = "Doomspire Brickbattle Gui"
  68. Title.TextColor3 = Color3.new(1, 1, 1)
  69. Title.TextScaled = true
  70. Title.TextSize = 14
  71. Title.TextWrapped = true
  72.  
  73. TeleportFrame.Name = "TeleportFrame"
  74. TeleportFrame.Parent = MainGui
  75. TeleportFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  76. TeleportFrame.BackgroundTransparency = 1
  77. TeleportFrame.BorderSizePixel = 2
  78. TeleportFrame.Position = UDim2.new(0.0368550383, 0, 0.505836546, 0)
  79. TeleportFrame.Size = UDim2.new(0, 100, 0, 116)
  80.  
  81. Green.Name = "Green"
  82. Green.Parent = TeleportFrame
  83. Green.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118)
  84. Green.BackgroundTransparency = 1
  85. Green.BorderSizePixel = 0
  86. Green.Size = UDim2.new(0, 72, 0, 25)
  87. Green.Font = Enum.Font.Cartoon
  88. Green.Text = "Green"
  89. Green.TextColor3 = Color3.new(1, 1, 1)
  90. Green.TextScaled = true
  91. Green.TextSize = 14
  92. Green.TextWrapped = true
  93. Green.MouseButton1Click:connect (function()
  94. --teleport to green tower
  95. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-21, 130.8, -109)
  96. end)
  97.  
  98. Red.Name = "Red"
  99. Red.Parent = TeleportFrame
  100. Red.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118)
  101. Red.BackgroundTransparency = 1
  102. Red.BorderSizePixel = 0
  103. Red.Position = UDim2.new(0, 0, 0.0622568056, 0)
  104. Red.Size = UDim2.new(0, 72, 0, 25)
  105. Red.Font = Enum.Font.Cartoon
  106. Red.Text = "Red"
  107. Red.TextColor3 = Color3.new(1, 1, 1)
  108. Red.TextScaled = true
  109. Red.TextSize = 14
  110. Red.TextWrapped = true
  111. Red.MouseButton1Click:connect (function()
  112. --teleport to red tower
  113. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-109, 130.8, 21)
  114. end)
  115.  
  116. Yellow.Name = "Yellow"
  117. Yellow.Parent = TeleportFrame
  118. Yellow.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118)
  119. Yellow.BackgroundTransparency = 1
  120. Yellow.BorderSizePixel = 0
  121. Yellow.Position = UDim2.new(0, 0, 0.128404662, 0)
  122. Yellow.Size = UDim2.new(0, 72, 0, 25)
  123. Yellow.Font = Enum.Font.Cartoon
  124. Yellow.Text = "Yellow"
  125. Yellow.TextColor3 = Color3.new(1, 1, 1)
  126. Yellow.TextScaled = true
  127. Yellow.TextSize = 14
  128. Yellow.TextWrapped = true
  129. Yellow.MouseButton1Click:connect (function()
  130. --teleport to yellow tower
  131. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(109, 130.8, -21)
  132. end)
  133.  
  134. Blue.Name = "Blue"
  135. Blue.Parent = TeleportFrame
  136. Blue.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118)
  137. Blue.BackgroundTransparency = 1
  138. Blue.BorderSizePixel = 0
  139. Blue.Position = UDim2.new(0, 0, 0.192606986, 0)
  140. Blue.Size = UDim2.new(0, 72, 0, 25)
  141. Blue.Font = Enum.Font.Cartoon
  142. Blue.Text = "Blue"
  143. Blue.TextColor3 = Color3.new(1, 1, 1)
  144. Blue.TextScaled = true
  145. Blue.TextSize = 14
  146. Blue.TextWrapped = true
  147. Blue.MouseButton1Click:connect (function()
  148. --teleport to blue tower
  149. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(21, 130.8, 109)
  150. end)
  151.  
  152. Teleports.Name = "Teleports"
  153. Teleports.Parent = MainGui
  154. Teleports.BackgroundColor3 = Color3.new(1, 1, 1)
  155. Teleports.BackgroundTransparency = 1
  156. Teleports.BorderSizePixel = 0
  157. Teleports.Position = UDim2.new(0, 0, 0.357976645, 0)
  158. Teleports.Size = UDim2.new(0, 112, 0, 32)
  159. Teleports.Font = Enum.Font.Cartoon
  160. Teleports.Text = "Teleports"
  161. Teleports.TextColor3 = Color3.new(1, 1, 1)
  162. Teleports.TextScaled = true
  163. Teleports.TextSize = 14
  164. Teleports.TextWrapped = true
  165.  
  166. ESP.Name = "ESP"
  167. ESP.Parent = MainGui
  168. ESP.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118)
  169. ESP.BackgroundTransparency = 1
  170. ESP.BorderSizePixel = 0
  171. ESP.Position = UDim2.new(0.336609364, 0, 0.377431899, 0)
  172. ESP.Size = UDim2.new(0, 72, 0, 33)
  173. ESP.Font = Enum.Font.Cartoon
  174. ESP.Text = "ESP"
  175. ESP.TextColor3 = Color3.new(1, 1, 1)
  176. ESP.TextScaled = true
  177. ESP.TextSize = 14
  178. ESP.TextWrapped = true
  179. ESP.MouseButton1Click:connect (function()
  180. loadstring(game:HttpGet(("https://pastebin.com/raw/A84cMe8w"),true))()
  181. end)
  182.  
  183. CloseMain.Name = "CloseMain"
  184. CloseMain.Parent = MainGui
  185. CloseMain.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118)
  186. CloseMain.BackgroundTransparency = 1
  187. CloseMain.BorderSizePixel = 0
  188. CloseMain.Position = UDim2.new(0.783783793, 0, 0.863813341, 0)
  189. CloseMain.Size = UDim2.new(0, 86, 0, 33)
  190. CloseMain.Font = Enum.Font.Cartoon
  191. CloseMain.Text = "Close"
  192. CloseMain.TextColor3 = Color3.new(1, 1, 1)
  193. CloseMain.TextScaled = true
  194. CloseMain.TextSize = 14
  195. CloseMain.TextWrapped = true
  196. CloseMain.MouseButton1Click:connect (function()
  197. OpenGui.Visible = true
  198. MainGui.Visible = false
  199. end)
  200.  
  201. -- Scripts:
  202. function SCRIPT_LMAV80_FAKESCRIPT() -- DoomspireBrickbattle.Notification
  203. local script = Instance.new('Script')
  204. script.Parent = DoomspireBrickbattle
  205. game.StarterGui:SetCore("SendNotification", {Title = "BrickBattle Gui", Text = "By 123Lory321#9827", Icon = "", Duration = 10})
  206.  
  207. end
  208. coroutine.resume(coroutine.create(SCRIPT_LMAV80_FAKESCRIPT))
  209.  
  210. ---------------------------------------
  211. --WHITELIST
  212. ---------------------------------------
  213. OpenGui.Visible = true
  214. if game.Players.LocalPlayer.Name == "urnoob1234567" then
  215. OpenGui.Visible = true
  216. end
  217.  
  218. if game.Players.LocalPlayer.Name == "123Lory321" then
  219. OpenGui.Visible = true
  220. end
  221.  
  222. if game.Players.LocalPlayer.Name == "ThatOneMeme_II" then
  223. OpenGui.Visible = true
  224. end
  225.  
  226. if game.Players.LocalPlayer.Name == "HmProxy" then
  227. OpenGui.Visible = true
  228. end
  229.  
  230. if game.Players.LocalPlayer.Name == "xXironex_PL" then
  231. OpenGui.Visible = true
  232. end
  233.  
  234. if game.Players.LocalPlayer.Name == "NICKNAME TO WHITELIST" then
  235. OpenGui.Visible = true
  236. end
  237.  
  238. if game.Players.LocalPlayer.Name == "NICKNAME TO WHITELIST" then
  239. OpenGui.Visible = true
  240. end
  241.  
  242. --------------------------------------
  243. --BLACKLIST
  244. --------------------------------------
  245.  
  246.  
  247. if game.Players.LocalPlayer.Name == "NICKAME TO BLACKLIST" then
  248. game.Players.LocalPlayer:Kick("Blacklisted!")
  249. end
  250.  
  251. if game.Players.LocalPlayer.Name == "NICKAME TO BLACKLIST" then
  252. game.Players.LocalPlayer:Kick("Blacklisted!")
  253. end
  254.  
  255. if game.Players.LocalPlayer.Name == "NICKAME TO BLACKLIST" then
  256. game.Players.LocalPlayer:Kick("Blacklisted!")
  257. end
  258.  
  259. if game.Players.LocalPlayer.Name == "NICKAME TO BLACKLIST" then
  260. game.Players.LocalPlayer:Kick("Blacklisted!")
  261. end
  262.  
  263. if game.Players.LocalPlayer.Name == "NICKAME TO BLACKLIST" then
  264. game.Players.LocalPlayer:Kick("Blacklisted!")
  265. end
  266.  
  267. if game.Players.LocalPlayer.Name == "NICKAME TO BLACKLIST" then
  268. game.Players.LocalPlayer:Kick("Blacklisted!")
  269. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement