quan22111

Untitled

Jun 10th, 2019
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.38 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 = "One Hit Samurai"
  44. onehit1.TextColor3 = Color3.new(0, 0, 0)
  45. onehit1.TextSize = 14
  46. onehit1.MouseButton1Down:connect(function()
  47. local name = "Samurai Swordsman";
  48. local function Modify(part)
  49. part.Head:Destroy()
  50. end
  51.  
  52. local function recursive(obj)
  53. for _, child in pairs(obj:GetChildren()) do
  54. if (child.Name == name) then
  55. Modify(child);
  56. end
  57. recursive(child);
  58. end
  59. end
  60. recursive(workspace);
  61. end)
  62.  
  63. TextLabel.Parent = main
  64. TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  65. TextLabel.Position = UDim2.new(-0.0376067311, 0, -0.0614352711, 0)
  66. TextLabel.Size = UDim2.new(0, 221, 0, 35)
  67. TextLabel.Font = Enum.Font.SourceSans
  68. TextLabel.Text = "Dungeon Quest Gui's"
  69. TextLabel.TextColor3 = Color3.new(1, 0, 0)
  70. TextLabel.TextSize = 14
  71.  
  72. TextLabel_2.Parent = TextLabel
  73. TextLabel_2.BackgroundColor3 = Color3.new(0, 0, 0)
  74. TextLabel_2.Position = UDim2.new(-0.00125388801, 0, 5.68571472, 0)
  75. TextLabel_2.Size = UDim2.new(0, 221, 0, 33)
  76. TextLabel_2.Font = Enum.Font.SourceSans
  77. TextLabel_2.Text = "Gui By Kiแป‡t Lewis"
  78. TextLabel_2.TextColor3 = Color3.new(1, 0, 0)
  79. TextLabel_2.TextSize = 14
  80.  
  81. close.Name = "close"
  82. close.Parent = TextLabel_2
  83. close.BackgroundColor3 = Color3.new(1, 1, 1)
  84. close.Position = UDim2.new(0.87378639, 0, -5.75032043, 0)
  85. close.Size = UDim2.new(0, 20, 0, 17)
  86. close.Font = Enum.Font.SourceSans
  87. close.Text = "X"
  88. close.TextColor3 = Color3.new(0, 0, 0)
  89. close.TextSize = 14
  90.  
  91. noclip.Name = "noclip"
  92. noclip.Parent = main
  93. noclip.BackgroundColor3 = Color3.new(0, 0, 1)
  94. noclip.Position = UDim2.new(0.121359222, 0, 0.671361506, 0)
  95. noclip.Size = UDim2.new(0, 161, 0, 24)
  96. noclip.Font = Enum.Font.SourceSans
  97. noclip.Text = "Noclip"
  98. noclip.TextColor3 = Color3.new(0, 0, 0)
  99. noclip.TextSize = 14
  100. noclip.MouseButton1Down:connect(function()
  101. noclip = true
  102. game:GetService('RunService').Stepped:connect(function()
  103. if noclip then
  104. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  105. end
  106. end)
  107. plr = game.Players.LocalPlayer
  108. mouse = plr:GetMouse()
  109. mouse.KeyDown:connect(function(key)
  110.  
  111. if key == "o" then
  112. noclip = not noclip
  113. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  114. end
  115. end)
  116. print('Thanks for Use')
  117. print('Thanks very much')
  118. end)
  119.  
  120. onehit2.Name = "onehit2"
  121. onehit2.Parent = main
  122. onehit2.BackgroundColor3 = Color3.new(0, 0, 1)
  123. onehit2.Position = UDim2.new(0.121359222, 0, 0.328236043, 0)
  124. onehit2.Size = UDim2.new(0, 161, 0, 24)
  125. onehit2.Font = Enum.Font.SourceSans
  126. onehit2.Text = "One Hit Shuriken"
  127. onehit2.TextColor3 = Color3.new(0, 0, 0)
  128. onehit2.TextSize = 14
  129. onehit2.MouseButton1Down:connect(function()
  130. local nama = "Shuriken Thrower";
  131. local function Modify(part)
  132. part.Head:Destroy()
  133. end
  134.  
  135. local function recursive(obj)
  136. for _, child in pairs(obj:GetChildren()) do
  137. if (child.Name == nama) then
  138. Modify(child);
  139. end
  140. recursive(child);
  141. end
  142. end
  143. recursive(workspace);
  144.  
  145. end)
  146. -- Scripts:
Add Comment
Please, Sign In to add comment