Advertisement
totsai

oof

Mar 25th, 2019
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1.  
  2. local DQ = Instance.new("ScreenGui")
  3. local MainGUI = Instance.new("Frame")
  4. local SpellSpam = Instance.new("TextButton")
  5. local Speed = Instance.new("TextButton")
  6. --Properties:
  7. DQ.Name = "DQ "
  8. DQ.Parent = game.CoreGui
  9.  
  10. MainGUI.Active = true
  11. MainGUI.Draggable = true
  12.  
  13. MainGUI.Name = "MainGUI"
  14. MainGUI.Parent = DQ
  15. MainGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  16. MainGUI.Position = UDim2.new(0.0166563652, 0, 0.337837845, 0)
  17. MainGUI.Size = UDim2.new(0, 223, 0, 149)
  18.  
  19. SpellSpam.Name = "Spell Spam"
  20. SpellSpam.Parent = MainGUI
  21. SpellSpam.BackgroundColor3 = Color3.new(1, 1, 1)
  22. SpellSpam.BorderSizePixel = 2
  23. SpellSpam.Position = UDim2.new(0.0493273549, 0, 0.15436241, 0)
  24. SpellSpam.Size = UDim2.new(0, 200, 0, 50)
  25. SpellSpam.Font = Enum.Font.SourceSans
  26. SpellSpam.Text = "Spell Spam"
  27. SpellSpam.TextColor3 = Color3.new(0, 0, 0)
  28. SpellSpam.TextScaled = true
  29. SpellSpam.TextSize = 45
  30. SpellSpam.TextWrapped = true
  31. SpellSpam.MouseButton1Click:connect(function()
  32. _G.SpammingTimes = 15
  33. loadstring(game:HttpGet('http://hamiii.thundermods.com/DungeonQuest.txt',true))()
  34.  
  35. print("Working")
  36. end)
  37.  
  38. Speed.Name = "Speed"
  39. Speed.Parent = MainGUI
  40. Speed.BackgroundColor3 = Color3.new(1, 1, 1)
  41. Speed.BorderSizePixel = 3
  42. Speed.Position = UDim2.new(0.0493273549, 0, 0.570469797, 0)
  43. Speed.Size = UDim2.new(0, 200, 0, 50)
  44. Speed.Font = Enum.Font.SourceSans
  45. Speed.Text = "Speed"
  46. Speed.TextColor3 = Color3.new(0, 0, 0)
  47. Speed.TextScaled = true
  48. Speed.TextSize = 45
  49. Speed.TextWrapped = true
  50. Speed.MouseButton1Click:connect(function()
  51. local Dungeon = workspace:WaitForChild("dungeon")
  52. local Player = game.Players.LocalPlayer
  53. Player.Character.Humanoid.WalkSpeed = 100
  54.  
  55. spawn(function()
  56. while wait(0.2) do
  57. for index, value in next, Dungeon:GetDescendants() do
  58. if (value.Name == "barrier") then
  59. value:Destroy()
  60. end
  61. end
  62. end
  63. end)
  64.  
  65. print("Working")
  66. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement