Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.95 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local Dungeon = Instance.new("ScreenGui")
  5. local main = Instance.new("Frame")
  6. local walkspeed = Instance.new("TextButton")
  7. local onehit1 = Instance.new("TextButton")
  8. local TextLabel = Instance.new("TextLabel")
  9. local TextLabel_2 = Instance.new("TextLabel")
  10. local close = Instance.new("TextButton")
  11. local noclip = Instance.new("TextButton")
  12. local onehit2 = Instance.new("TextButton")
  13. --Properties:
  14. Dungeon.Name = "Dungeon"
  15. Dungeon.Parent = game.CoreGui
  16. Dungeon.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17.  
  18. main.Name = "main"
  19. main.Parent = Dungeon
  20. main.BackgroundColor3 = Color3.new(0.301961, 0.301961, 0.301961)
  21. main.Position = UDim2.new(0.0190677941, 0, 0.475968987, 0)
  22. main.Size = UDim2.new(0, 206, 0, 213)
  23.  
  24. walkspeed.Name = "walkspeed"
  25. walkspeed.Parent = main
  26. walkspeed.BackgroundColor3 = Color3.new(0, 0, 1)
  27. walkspeed.Position = UDim2.new(0.126213595, 0, 0.164319247, 0)
  28. walkspeed.Size = UDim2.new(0, 160, 0, 21)
  29. walkspeed.Font = Enum.Font.SourceSans
  30. walkspeed.Text = "Walk Speed"
  31. walkspeed.TextColor3 = Color3.new(0, 0, 0)
  32. walkspeed.TextSize = 14
  33. walkspeed.MouseButton1Down:connect(function()
  34. game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = 50
  35. end)
  36.  
  37. onehit1.Name = "onehit1"
  38. onehit1.Parent = main
  39. onehit1.BackgroundColor3 = Color3.new(0, 0, 1)
  40. onehit1.Position = UDim2.new(0.121359229, 0, 0.507042289, 0)
  41. onehit1.Size = UDim2.new(0, 160, 0, 22)
  42. onehit1.Font = Enum.Font.SourceSans
  43. onehit1.Text = "1 hit"
  44. onehit1.TextColor3 = Color3.new(0, 0, 0)
  45. onehit1.TextSize = 14
  46. onehit1.MouseButton1Down:connect(function()
  47. local name = "King's Guard";
  48. local name = "Elementalist";
  49. local name = "Hitman";
  50. local function Modify(part)
  51. part.Head:Destroy()
  52. end
  53.  
  54. local function recursive(obj)
  55. for _, child in pairs(obj:GetChildren()) do
  56. if (child.Name == name) then
  57. Modify(child);
  58. end
  59. recursive(child);
  60. end
  61. end
  62. recursive(workspace);
  63. end)
  64.  
  65. TextLabel.Parent = main
  66. TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  67. TextLabel.Position = UDim2.new(-0.0376067311, 0, -0.0614352711, 0)
  68. TextLabel.Size = UDim2.new(0, 221, 0, 35)
  69. TextLabel.Font = Enum.Font.SourceSans
  70. TextLabel.Text = "Dungeon Quest Gui's"
  71. TextLabel.TextColor3 = Color3.new(1, 0, 0)
  72. TextLabel.TextSize = 14
  73.  
  74. TextLabel_2.Parent = TextLabel
  75. TextLabel_2.BackgroundColor3 = Color3.new(0, 0, 0)
  76. TextLabel_2.Position = UDim2.new(-0.00125388801, 0, 5.68571472, 0)
  77. TextLabel_2.Size = UDim2.new(0, 221, 0, 33)
  78. TextLabel_2.Font = Enum.Font.SourceSans
  79. TextLabel_2.Text = "Gui By Hai Dang "
  80. TextLabel_2.TextColor3 = Color3.new(1, 0, 0)
  81. TextLabel_2.TextSize = 14
  82.  
  83. close.Name = "close"
  84. close.Parent = TextLabel_2
  85. close.BackgroundColor3 = Color3.new(1, 1, 1)
  86. close.Position = UDim2.new(0.87378639, 0, -5.75032043, 0)
  87. close.Size = UDim2.new(0, 20, 0, 17)
  88. close.Font = Enum.Font.SourceSans
  89. close.Text = "X"
  90. close.TextColor3 = Color3.new(0, 0, 0)
  91. close.TextSize = 14
  92.  
  93. noclip.Name = "noclip"
  94. noclip.Parent = main
  95. noclip.BackgroundColor3 = Color3.new(0, 0, 1)
  96. noclip.Position = UDim2.new(0.121359222, 0, 0.671361506, 0)
  97. noclip.Size = UDim2.new(0, 161, 0, 24)
  98. noclip.Font = Enum.Font.SourceSans
  99. noclip.Text = "Noclip"
  100. noclip.TextColor3 = Color3.new(0, 0, 0)
  101. noclip.TextSize = 14
  102. noclip.MouseButton1Down:connect(function()
  103. noclip = true
  104. game:GetService('RunService').Stepped:connect(function()
  105. if noclip then
  106. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  107. end
  108. end)
  109. plr = game.Players.LocalPlayer
  110. mouse = plr:GetMouse()
  111. mouse.KeyDown:connect(function(key)
  112.  
  113. if key == "o" then
  114. noclip = not noclip
  115. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  116. end
  117. end)
  118. print('Thanks for Use')
  119. print('Thanks very much')
  120. end)
  121. local function recursive(obj)
  122. for _, child in pairs(obj:GetChildren()) do
  123. if (child.Name == name) then
  124. Modify(child);
  125. end
  126. recursive(child);
  127. end
  128. end
  129. recursive(workspace);
  130.  
  131. end)
  132. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement