OogaBoogaNoob

Doomspire

Apr 4th, 2022 (edited)
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.19 KB | None | 0 0
  1. --fling towers
  2. --game: https://www.roblox.com/games/1215581239/Doomspire-Brickbattle
  3. -- Remade Gui Of JackMcJagger15's "Fling/Kill Gui".
  4. --fling credits: https://pastebin.com/4j6CC7LK
  5. -- Instances:
  6. local FlingGui = Instance.new("ScreenGui")
  7. local Bar1 = Instance.new("Frame")
  8. local Bar2 = Instance.new("Frame")
  9. local Main = Instance.new("Frame")
  10. local Credits = Instance.new("TextLabel")
  11. local StartKill = Instance.new("TextButton")
  12. local StopKill = Instance.new("TextButton")
  13. local Instructions = Instance.new("TextLabel")
  14. local PowerWindow = Instance.new("TextButton")
  15. local Exit = Instance.new("TextButton")
  16. local Title = Instance.new("TextLabel")
  17. local Mini = Instance.new("TextButton")
  18. local Max = Instance.new("TextButton")
  19. local Menu = Instance.new("Frame")
  20. local CurrentPower = Instance.new("TextLabel")
  21. local DownArrow = Instance.new("TextButton")
  22. local UPArrow = Instance.new("TextButton")
  23. local Recommendation = Instance.new("TextLabel")
  24. --Properties:
  25. FlingGui.Name = "FlingGui"
  26. FlingGui.Parent = game.CoreGui
  27. FlingGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  28.  
  29. Bar1.Name = "Bar1"
  30. Bar1.Parent = FlingGui
  31. Bar1.Active = true
  32. Bar1.Draggable = true
  33. Bar1.BackgroundColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  34. Bar1.BorderSizePixel = 0
  35. Bar1.Position = UDim2.new(0.771875024, 0, 0.331481487, 0)
  36. Bar1.Size = UDim2.new(0, 411, 0, 43)
  37.  
  38. Bar2.Name = "Bar2"
  39. Bar2.Parent = Bar1
  40. Bar2.BackgroundColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  41. Bar2.BorderSizePixel = 0
  42. Bar2.Position = UDim2.new(-0.00119751692, 0, 0.993540049, 0)
  43. Bar2.Size = UDim2.new(0, 411, 0, 9)
  44.  
  45. Main.Name = "Main"
  46. Main.Parent = Bar1
  47. Main.BackgroundColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  48. Main.BorderSizePixel = 0
  49. Main.Position = UDim2.new(-0.000809643941, 0, 1.20056009, 0)
  50. Main.Size = UDim2.new(0, 411, 0, 358)
  51.  
  52. Credits.Name = "Credits"
  53. Credits.Parent = Main
  54. Credits.BackgroundColor3 = Color3.new(1, 1, 1)
  55. Credits.BackgroundTransparency = 1
  56. Credits.Position = UDim2.new(-0.0024330914, 0, 0.905027986, 0)
  57. Credits.Size = UDim2.new(0, 354, 0, 34)
  58. Credits.Font = Enum.Font.GothamSemibold
  59. Credits.Text = "Gui By Aruroso, script by JackMcJagger15"
  60. Credits.TextColor3 = Color3.new(1, 1, 1)
  61. Credits.TextScaled = true
  62. Credits.TextSize = 14
  63. Credits.TextWrapped = true
  64.  
  65. StartKill.Name = "StartKill"
  66. StartKill.Parent = Main
  67. StartKill.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  68. StartKill.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  69. StartKill.BorderSizePixel = 5
  70. StartKill.Position = UDim2.new(0.175182477, 0, 0.388268143, 0)
  71. StartKill.Size = UDim2.new(0, 267, 0, 80)
  72. StartKill.Font = Enum.Font.GothamSemibold
  73. StartKill.Text = "Start Flingin!"
  74. StartKill.TextColor3 = Color3.new(1, 1, 1)
  75. StartKill.TextScaled = true
  76. StartKill.TextSize = 14
  77. StartKill.TextStrokeColor3 = Color3.new(1, 1, 1)
  78. StartKill.TextWrapped = true
  79. power = 500
  80. active = false
  81. local val = Instance.new("IntValue")
  82. val.Name = "Number"
  83. val.Parent = game.Players.LocalPlayer
  84. val.Value = 5
  85.  
  86. Exit.MouseButton1Click:connect(function()
  87. FlingGui.Enabled = false
  88. end)
  89.  
  90. StartKill.MouseButton1Click:connect(function()
  91. game:GetService('RunService').Stepped:connect(function()
  92. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  93. game.Players.LocalPlayer.Character.Head.CanCollide = false
  94. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  95. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  96. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  97. else
  98. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  99. game.Players.LocalPlayer.Character.Head.CanCollide = false
  100. game.Players.LocalPlayer.Character.UpperTorso.CanCollide = false
  101. game.Players.LocalPlayer.Character.LowerTorso.CanCollide = false
  102. game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide = false
  103. end
  104. end
  105. end)
  106. wait(.1)
  107. local bambam = Instance.new("BodyThrust")
  108. bambam.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  109. bambam.Force = Vector3.new(power,0,power)
  110. bambam.Location = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  111. end)
  112. StopKill.Name = "StopKill"
  113. StopKill.Parent = Main
  114. StopKill.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  115. StopKill.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  116. StopKill.BorderSizePixel = 5
  117. StopKill.Position = UDim2.new(0.238442808, 0, 0.648044705, 0)
  118. StopKill.Size = UDim2.new(0, 215, 0, 41)
  119. StopKill.Font = Enum.Font.GothamSemibold
  120. StopKill.Text = "Stop Flingin ;c"
  121. StopKill.TextColor3 = Color3.new(1, 1, 1)
  122. StopKill.TextScaled = true
  123. StopKill.TextSize = 14
  124. StopKill.TextStrokeColor3 = Color3.new(1, 1, 1)
  125. StopKill.TextWrapped = true
  126. StopKill.MouseButton1Click:connect(function()
  127. active = false
  128. game.Players.LocalPlayer.Character.HumanoidRootPart.BodyThrust:Remove()
  129. end)
  130.  
  131. Instructions.Name = "Instructions"
  132. Instructions.Parent = Main
  133. Instructions.BackgroundColor3 = Color3.new(1, 1, 1)
  134. Instructions.BackgroundTransparency = 1
  135. Instructions.Position = UDim2.new(0.068126522, 0, 0.064245902, 0)
  136. Instructions.Size = UDim2.new(0, 354, 0, 81)
  137. Instructions.Font = Enum.Font.GothamSemibold
  138. Instructions.Text = "Touch People and watch them fling off the map!"
  139. Instructions.TextColor3 = Color3.new(1, 1, 1)
  140. Instructions.TextScaled = true
  141. Instructions.TextSize = 14
  142. Instructions.TextWrapped = true
  143.  
  144. PowerWindow.Name = "PowerWindow"
  145. PowerWindow.Parent = Main
  146. PowerWindow.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  147. PowerWindow.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  148. PowerWindow.BorderSizePixel = 5
  149. PowerWindow.Position = UDim2.new(0.343065679, 0, 0.80726254, 0)
  150. PowerWindow.Size = UDim2.new(0, 128, 0, 41)
  151. PowerWindow.Font = Enum.Font.GothamSemibold
  152. PowerWindow.Text = "Power"
  153. PowerWindow.TextColor3 = Color3.new(1, 1, 1)
  154. PowerWindow.TextScaled = true
  155. PowerWindow.TextSize = 14
  156. PowerWindow.TextStrokeColor3 = Color3.new(1, 1, 1)
  157. PowerWindow.TextWrapped = true
  158. PowerWindow.MouseButton1Click:connect(function()
  159. Menu.Visible = not Menu.Visible
  160. end)
  161.  
  162. Exit.Name = "Exit"
  163. Exit.Parent = Bar1
  164. Exit.BackgroundColor3 = Color3.new(1, 0, 0)
  165. Exit.BackgroundTransparency = 1
  166. Exit.BorderSizePixel = 0
  167. Exit.Position = UDim2.new(0.888804913, 0, 0, 0)
  168. Exit.Size = UDim2.new(0, 45, 0, 42)
  169. Exit.Font = Enum.Font.GothamSemibold
  170. Exit.Text = "X"
  171. Exit.TextColor3 = Color3.new(1.39216, 1.39216, 1.39216)
  172. Exit.TextScaled = true
  173. Exit.TextSize = 14
  174. Exit.TextWrapped = true
  175. Exit.MouseButton1Down:connect(function()
  176. Bar1.Visible = false
  177. Menu.Visible = false
  178. end)
  179.  
  180. Title.Name = "Title"
  181. Title.Parent = Bar1
  182. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  183. Title.BackgroundTransparency = 1
  184. Title.Size = UDim2.new(0, 200, 0, 35)
  185. Title.Font = Enum.Font.Antique
  186. Title.Text = "Fling Gui"
  187. Title.TextColor3 = Color3.new(1, 1, 1)
  188. Title.TextScaled = true
  189. Title.TextSize = 14
  190. Title.TextWrapped = true
  191. Title.TextXAlignment = Enum.TextXAlignment.Left
  192.  
  193. Mini.Name = "Mini"
  194. Mini.Parent = Bar1
  195. Mini.BackgroundColor3 = Color3.new(1, 0, 0)
  196. Mini.BackgroundTransparency = 1
  197. Mini.BorderSizePixel = 0
  198. Mini.Position = UDim2.new(0.779315829, 0, 0, 0)
  199. Mini.Size = UDim2.new(0, 45, 0, 42)
  200. Mini.Font = Enum.Font.GothamSemibold
  201. Mini.Text = "-"
  202. Mini.TextColor3 = Color3.new(1.39216, 1.39216, 1.39216)
  203. Mini.TextScaled = true
  204. Mini.TextSize = 14
  205. Mini.TextWrapped = true
  206. Mini.MouseButton1Down:connect(function()
  207. Main.Visible = false
  208. Mini.Visible = false
  209. Max.Visible = true
  210. end)
  211.  
  212. Max.Name = "Max"
  213. Max.Parent = Bar1
  214. Max.BackgroundColor3 = Color3.new(1, 0, 0)
  215. Max.BackgroundTransparency = 1
  216. Max.BorderSizePixel = 0
  217. Max.Position = UDim2.new(0.779315829, 0, 0, 0)
  218. Max.Size = UDim2.new(0, 45, 0, 42)
  219. Max.Visible = false
  220. Max.Font = Enum.Font.GothamSemibold
  221. Max.Text = "+"
  222. Max.TextColor3 = Color3.new(1.39216, 1.39216, 1.39216)
  223. Max.TextScaled = true
  224. Max.TextSize = 14
  225. Max.TextWrapped = true
  226. Max.MouseButton1Down:connect(function()
  227. Main.Visible = true
  228. Mini.Visible = true
  229. Max.Visible = false
  230. end)
  231.  
  232. Menu.Name = "Menu"
  233. Menu.Parent = Bar1
  234. Menu.BackgroundColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  235. Menu.BorderSizePixel = 0
  236. Menu.Position = UDim2.new(-0.681346297, 0, 0, 0)
  237. Menu.Size = UDim2.new(0, 255, 0, 409)
  238. Menu.Visible = false
  239.  
  240. CurrentPower.Name = "CurrentPower"
  241. CurrentPower.Parent = Menu
  242. CurrentPower.BackgroundColor3 = Color3.new(1, 1, 1)
  243. CurrentPower.BackgroundTransparency = 1
  244. CurrentPower.Position = UDim2.new(0.0901960805, 0, 0.105134472, 0)
  245. CurrentPower.Size = UDim2.new(0, 209, 0, 50)
  246. CurrentPower.Font = Enum.Font.GothamSemibold
  247. CurrentPower.Text = "Current Power = 5"
  248. CurrentPower.TextColor3 = Color3.new(1, 1, 1)
  249. CurrentPower.TextScaled = true
  250. CurrentPower.TextSize = 14
  251. CurrentPower.TextWrapped = true
  252.  
  253. DownArrow.Name = "DownArrow"
  254. DownArrow.Parent = Menu
  255. DownArrow.BackgroundColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  256. DownArrow.BorderSizePixel = 0
  257. DownArrow.Position = UDim2.new(0.0235294122, 0, 0.207823962, 0)
  258. DownArrow.Size = UDim2.new(0, 130, 0, 42)
  259. DownArrow.Font = Enum.Font.SourceSans
  260. DownArrow.Text = "<"
  261. DownArrow.TextColor3 = Color3.new(1, 1, 1)
  262. DownArrow.TextScaled = true
  263. DownArrow.TextSize = 14
  264. DownArrow.TextWrapped = true
  265. DownArrow.MouseButton1Click:connect(function()
  266. power = power - 100
  267. game.Players.LocalPlayer.Number.Value = game.Players.LocalPlayer.Number.Value - 1
  268. CurrentPower.Text = "Current Power = " .. game.Players.LocalPlayer.Number.Value
  269. end)
  270.  
  271. UPArrow.Name = "UPArrow"
  272. UPArrow.Parent = Menu
  273. UPArrow.BackgroundColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  274. UPArrow.BorderSizePixel = 0
  275. UPArrow.Position = UDim2.new(0.533333361, 0, 0.207823962, 0)
  276. UPArrow.Size = UDim2.new(0, 119, 0, 42)
  277. UPArrow.Font = Enum.Font.SourceSans
  278. UPArrow.Text = ">"
  279. UPArrow.TextColor3 = Color3.new(1, 1, 1)
  280. UPArrow.TextScaled = true
  281. UPArrow.TextSize = 14
  282. UPArrow.TextWrapped = true
  283. UPArrow.MouseButton1Click:connect(function()
  284. power = power + 100
  285. game.Players.LocalPlayer.Number.Value = game.Players.LocalPlayer.Number.Value + 1
  286. CurrentPower.Text = "Current Power = " .. game.Players.LocalPlayer.Number.Value
  287. end)
  288.  
  289. Recommendation.Name = "Recommendation"
  290. Recommendation.Parent = Menu
  291. Recommendation.BackgroundColor3 = Color3.new(1, 1, 1)
  292. Recommendation.BackgroundTransparency = 1
  293. Recommendation.Position = UDim2.new(0.0235294104, 0, 0.325183392, 0)
  294. Recommendation.Size = UDim2.new(0, 242, 0, 31)
  295. Recommendation.Font = Enum.Font.GothamSemibold
  296. Recommendation.Text = "(Best Power is probably 500+fly+noclip)"
  297. Recommendation.TextColor3 = Color3.new(1, 1, 1)
  298. Recommendation.TextScaled = true
  299. Recommendation.TextSize = 14
  300. Recommendation.TextWrapped = true
  301. -- Scripts:
  302.  
  303.  
  304. --no cd
  305.  
  306. loadstring(game:HttpGet("https://raw.githubusercontent.com/Bjkefe2/DoomSpire-brickbattle/main/DoomSpire%20no%20cooldown"))()
  307.  
  308. --tp gui
  309. local Notification = loadstring(game:HttpGet("https://raw.githubusercontent.com/Kinlei/Dynissimo/main/Scripts/AkaliNotif.lua"))().Notify
  310.  
  311. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Kinlei/MaterialLua/master/Module.lua"))()
  312.  
  313. local Lib = Library.Load({
  314. Title = "hm",
  315. Style = 3,
  316. SizeX = 250,
  317. SizeY = 250,
  318. Theme = "Dark",
  319. ColorOverrides = {
  320. MainFrame = Color3.fromRGB(20, 20, 20)
  321. }
  322. })
  323.  
  324. local Main = Lib.New({
  325. Title = "Main"
  326. })
  327.  
  328. Main.Dropdown({
  329. Text = "Teleport",
  330. Callback = function(Selected)
  331. if Selected == "middle" then
  332. Selected = CFrame.new(3.9425, 187.44924, 6.676)
  333. elseif Selected == "Green" then
  334. Selected = CFrame.new(3.7404, 187.50793, -99.086)
  335. elseif Selected == "Red" then
  336. Selected = CFrame.new(-107.812, 155.2819, 6.7489)
  337. elseif Selected == "Yellow" then
  338. Selected = CFrame.new(106.288, 174.331, 12.233)
  339. elseif Selected == "Blue" then
  340. Selected = CFrame.new(7.9425, 187.44924, 116.676)
  341. elseif Selected == "Lobby" then
  342. Selected = CFrame.new(-22, 547, -32)
  343. end
  344.  
  345. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = Selected
  346. end,
  347. Options = {
  348. "Red",
  349. "Yellow",
  350. "Green",
  351. "Blue",
  352. "Lobby",
  353. "middle"
  354. }
  355. })
  356. --admin(fates)
  357. loadstring(game:HttpGet("https://raw.githubusercontent.com/fatesc/fates-admin/main/main.lua"))();
Add Comment
Please, Sign In to add comment