karobloxYT

Untitled

Aug 25th, 2019
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.73 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. while wait(0.2) do
  151. for index, value in next, workspace:GetDescendants() do
  152. if (value:FindFirstChildOfClass("Humanoid") and value ~= Player.Character) then
  153. value.Humanoid.Health = 0
  154. end
  155. end
  156. end
  157. end)
  158.  
  159. Name.Name = "Name"
  160. Name.Parent = Main
  161. Name.BackgroundColor3 = Color3.new(1, 1, 1)
  162. Name.BackgroundTransparency = 1
  163. Name.Position = UDim2.new(0.00328947417, 0, 0, 0)
  164. Name.Size = UDim2.new(0, 303, 0, 21)
  165. Name.Font = Enum.Font.Cartoon
  166. Name.Text = "Silent Hub Beta V1.1"
  167. Name.TextColor3 = Color3.new(1, 1, 1)
  168. Name.TextSize = 18
  169. Name.TextWrapped = true
  170.  
  171. NoclipOff.Name = "NoclipOff"
  172. NoclipOff.Parent = Main
  173. NoclipOff.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
  174. NoclipOff.BorderColor3 = Color3.new(1, 1, 1)
  175. NoclipOff.Position = UDim2.new(0.37417534, 0, 0.530326068, 0)
  176. NoclipOff.Size = UDim2.new(0, 88, 0, 34)
  177. NoclipOff.Font = Enum.Font.Cartoon
  178. NoclipOff.Text = "Noclip"
  179. NoclipOff.TextColor3 = Color3.new(1, 1, 1)
  180. NoclipOff.TextSize = 18
  181. NoclipOff.MouseButton1Down:connect(function()
  182. NoclipOff.Visible = false
  183. NoclipOn.Visible = true
  184. --Script Here (OFF)
  185. noclip = true
  186. game:GetService('RunService').Stepped:connect(function()
  187. if noclip then
  188. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  189. end
  190. end)
  191. plr = game.Players.LocalPlayer
  192. end)
  193. -- Scripts:
  194. NoclipOff.MouseButton1Down:connect(function()
  195. if ok then
  196. NoclipOn.Text = "Noclip"
  197. NoclipOn.BorderColor3 = Color3.fromRGB(85, 255, 0)
  198. else
  199. NoclipOff.Text = "Noclip"
  200. NoclipOff.BorderColor3 = Color3.fromRGB(255, 255, 255)
  201. end
  202. ok = not ok
  203. end)
  204.  
  205. --[[ Settings --]]
  206. Main.Draggable = true
Add Comment
Please, Sign In to add comment