ShadowDragons_YT

Dungeon Quest autofarm

Jan 2nd, 2020
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.69 KB | None | 0 0
  1. --[[ Silent Hub
  2. Update : V1.1
  3. + New Ui
  4. + Instant Kill Dungeon Quest
  5. + Gui : Mon#8974 | Scripter : Hidden
  6. Post by : Mon
  7. --]]
  8. local NewUpdateGui = Instance.new("ScreenGui")
  9. local Main = Instance.new("Frame")
  10. local Credit = Instance.new("TextLabel")
  11. local Close = Instance.new("TextButton")
  12. local Hip = Instance.new("TextButton")
  13. local Speed = Instance.new("TextButton")
  14. local SpeedText = Instance.new("TextBox")
  15. local HipText = Instance.new("TextBox")
  16. local NoclipOff = Instance.new("TextButton")
  17. local InstantDungeonQuest = Instance.new("TextButton")
  18. local Name = Instance.new("TextLabel")
  19. local NoclipOn = Instance.new("TextButton")
  20. --Properties:
  21. NewUpdateGui.Name = "NewUpdateGui"
  22. NewUpdateGui.Parent = game.CoreGui
  23. NewUpdateGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  24.  
  25. Main.Name = "Main"
  26. Main.Parent = NewUpdateGui
  27. Main.Active = true
  28. Main.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
  29. Main.BorderColor3 = Color3.new(1, 1, 1)
  30. Main.Position = UDim2.new(0.0970126688, 0, 0.196883857, 0)
  31. Main.Size = UDim2.new(0, 304, 0, 237)
  32.  
  33. Credit.Name = "PlayerName"
  34. Credit.Parent = Main
  35. Credit.BackgroundColor3 = Color3.new(1, 1, 1)
  36. Credit.BackgroundTransparency = 1
  37. Credit.Position = UDim2.new(0.00281695323, 0, 0.891795218, 0)
  38. Credit.Size = UDim2.new(0, 303, 0, 25)
  39. Credit.Font = Enum.Font.Cartoon
  40. Credit.Text = "  Gui : Mon#8974 | Scripter : Hidden"
  41. Credit.TextColor3 = Color3.new(1, 1, 1)
  42. Credit.TextSize = 18
  43. Credit.TextXAlignment = Enum.TextXAlignment.Left
  44.  
  45. Close.Name = "Close"
  46. Close.Parent = Main
  47. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  48. Close.BackgroundTransparency = 1
  49. Close.Position = UDim2.new(0.912721574, 0, 0, 0)
  50. Close.Size = UDim2.new(0, 26, 0, 21)
  51. Close.Font = Enum.Font.SciFi
  52. Close.Text = "X"
  53. Close.TextColor3 = Color3.new(1, 1, 1)
  54. Close.TextSize = 18
  55. Close.MouseButton1Down:connect(function()
  56. Main.Visible = false
  57. end)
  58.  
  59. Hip.Name = "Hip"
  60. Hip.Parent = Main
  61. Hip.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
  62. Hip.BorderColor3 = Color3.new(1, 1, 1)
  63. Hip.Position = UDim2.new(0.622535229, 0, 0.146896839, 0)
  64. Hip.Size = UDim2.new(0, 90, 0, 34)
  65. Hip.Font = Enum.Font.Cartoon
  66. Hip.Text = "HipHeight"
  67. Hip.TextColor3 = Color3.new(1, 1, 1)
  68. Hip.TextSize = 18
  69. Hip.MouseButton1Click:Connect(function()
  70. local Player = game.Players.LocalPlayer.Character
  71. Player.Humanoid.HipHeight = HipText.Text
  72. end)
  73.  
  74. Speed.Name = "Speed"
  75. Speed.Parent = Main
  76. Speed.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
  77. Speed.BorderColor3 = Color3.new(1, 1, 1)
  78. Speed.Position = UDim2.new(0.111276917, 0, 0.146896809, 0)
  79. Speed.Size = UDim2.new(0, 90, 0, 34)
  80. Speed.Font = Enum.Font.Cartoon
  81. Speed.Text = "Speed"
  82. Speed.TextColor3 = Color3.new(1, 1, 1)
  83. Speed.TextSize = 18
  84. Speed.MouseButton1Click:Connect(function()
  85. local Player = game.Players.LocalPlayer.Character
  86. Player.Humanoid.WalkSpeed = SpeedText.Text
  87. end)
  88.  
  89. SpeedText.Name = "SpeedText"
  90. SpeedText.Parent = Main
  91. SpeedText.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
  92. SpeedText.BorderColor3 = Color3.new(1, 1, 1)
  93. SpeedText.Position = UDim2.new(0.152131215, 0, 0.367272735, 0)
  94. SpeedText.Size = UDim2.new(0, 67, 0, 27)
  95. SpeedText.Font = Enum.Font.Cartoon
  96. SpeedText.PlaceholderColor3 = Color3.new(0.74902, 0.74902, 0.74902)
  97. SpeedText.PlaceholderText = "16"
  98. SpeedText.Text = ""
  99. SpeedText.TextColor3 = Color3.new(1, 1, 1)
  100. SpeedText.TextSize = 18
  101.  
  102. HipText.Name = "HipText"
  103. HipText.Parent = Main
  104. HipText.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
  105. HipText.BorderColor3 = Color3.new(1, 1, 1)
  106. HipText.Position = UDim2.new(0.663389444, 0, 0.367272735, 0)
  107. HipText.Size = UDim2.new(0, 67, 0, 27)
  108. HipText.Font = Enum.Font.Cartoon
  109. HipText.PlaceholderColor3 = Color3.new(0.74902, 0.74902, 0.74902)
  110. HipText.PlaceholderText = "2"
  111. HipText.Text = ""
  112. HipText.TextColor3 = Color3.new(1, 1, 1)
  113. HipText.TextSize = 18
  114.  
  115. NoclipOn.Name = "NoclipOn"
  116. NoclipOn.Parent = Main
  117. NoclipOn.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
  118. NoclipOn.BorderColor3 = Color3.new(0.333333, 1, 0)
  119. NoclipOn.Position = UDim2.new(0.37417534, 0, 0.530326068, 0)
  120. NoclipOn.Size = UDim2.new(0, 88, 0, 34)
  121. NoclipOn.Font = Enum.Font.Cartoon
  122. NoclipOn.Text = "Noclip"
  123. NoclipOn.TextColor3 = Color3.new(1, 1, 1)
  124. NoclipOn.TextSize = 18
  125. NoclipOn.MouseButton1Down:connect(function()
  126. NoclipOn.Visible = false
  127. NoclipOff.Visible = true
  128. --Script Here (OFF)
  129. noclip = false
  130. game:GetService('RunService').Stepped:connect(function()
  131. if noclip then
  132. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  133. end
  134. end)
  135. plr = game.Players.LocalPlayer
  136. end)
  137.  
  138. InstantDungeonQuest.Name = "Instant [ Dungeon Quest ]"
  139. InstantDungeonQuest.Parent = Main
  140. InstantDungeonQuest.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
  141. InstantDungeonQuest.BorderColor3 = Color3.new(1, 1, 1)
  142. InstantDungeonQuest.Position = UDim2.new(0.15631023, 0, 0.716363668, 0)
  143. InstantDungeonQuest.Size = UDim2.new(0, 221, 0, 34)
  144. InstantDungeonQuest.Font = Enum.Font.Cartoon
  145. InstantDungeonQuest.Text = "Instant [ Dungeon Quest ]"
  146. InstantDungeonQuest.TextColor3 = Color3.new(1, 1, 1)
  147. InstantDungeonQuest.TextSize = 18
  148. InstantDungeonQuest.MouseButton1Down:connect(function()
  149. local Player = game.Players.LocalPlayer
  150. for index, value in next, workspace:GetDescendants() do
  151. if (value:FindFirstChildOfClass("Humanoid") and value ~= Player.Character) then
  152. value.Humanoid.Health = 0
  153. end
  154. end
  155. end
  156. end)
  157.  
  158. Name.Name = "Name"
  159. Name.Parent = Main
  160. Name.BackgroundColor3 = Color3.new(1, 1, 1)
  161. Name.BackgroundTransparency = 1
  162. Name.Position = UDim2.new(0.00328947417, 0, 0, 0)
  163. Name.Size = UDim2.new(0, 303, 0, 21)
  164. Name.Font = Enum.Font.Cartoon
  165. Name.Text = "Silent Hub Beta V1.1"
  166. Name.TextColor3 = Color3.new(1, 1, 1)
  167. Name.TextSize = 18
  168. Name.TextWrapped = true
  169.  
  170. NoclipOff.Name = "NoclipOff"
  171. NoclipOff.Parent = Main
  172. NoclipOff.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
  173. NoclipOff.BorderColor3 = Color3.new(1, 1, 1)
  174. NoclipOff.Position = UDim2.new(0.37417534, 0, 0.530326068, 0)
  175. NoclipOff.Size = UDim2.new(0, 88, 0, 34)
  176. NoclipOff.Font = Enum.Font.Cartoon
  177. NoclipOff.Text = "Noclip"
  178. NoclipOff.TextColor3 = Color3.new(1, 1, 1)
  179. NoclipOff.TextSize = 18
  180. NoclipOff.MouseButton1Down:connect(function()
  181. NoclipOff.Visible = false
  182. NoclipOn.Visible = true
  183. --Script Here (OFF)
  184. noclip = true
  185. game:GetService('RunService').Stepped:connect(function()
  186. if noclip then
  187. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  188. end
  189. end)
  190. plr = game.Players.LocalPlayer
  191. end)
  192. -- Scripts:
  193. NoclipOff.MouseButton1Down:connect(function()
  194. if ok then
  195. NoclipOn.Text = "Noclip"
  196. NoclipOn.BorderColor3 = Color3.fromRGB(85, 255, 0)
  197. else
  198. NoclipOff.Text = "Noclip"
  199. NoclipOff.BorderColor3 = Color3.fromRGB(255, 255, 255)
  200. end
  201. ok = not ok
  202. end)
  203.  
  204. --[[ Settings --]]
  205. Main.Draggable = true
Add Comment
Please, Sign In to add comment