Advertisement
M-Q711599

DaHoodGui = Instance.new("ScreenGui") OpenButton = Instance.

Dec 29th, 2019
532
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 7.20 KB | None | 0 0
  1. DaHoodGui = Instance.new("ScreenGui")
  2. OpenButton = Instance.new("TextButton")
  3. CloseButton = Instance.new("TextButton")
  4. Main = Instance.new("Frame")
  5. Title = Instance.new("TextLabel")
  6. WalkspeedQ = Instance.new("TextButton")
  7. NoclipB = Instance.new("TextButton")
  8. RemoveAll = Instance.new("TextButton")
  9. GravityON = Instance.new("TextButton")
  10. Godmode = Instance.new("TextButton")
  11. GravityOFF = Instance.new("TextButton")
  12. BTools = Instance.new("TextButton")
  13. InfiniteJump = Instance.new("TextButton")
  14. InputPlayer = Instance.new("TextBox")
  15. GotoPlayer = Instance.new("TextButton")
  16. local OpenTP_2 = Instance.new("TextButton")
  17. local CloseFAST = Instance.new("TextButton")
  18. local EspStatus = Instance.new("TextLabel")
  19. local st1 = Instance.new("TextLabel")
  20. local st1_2 = Instance.new("TextLabel")
  21. local st1_3 = Instance.new("TextLabel")
  22. local Name = Instance.new("TextLabel")
  23. local Move = Instance.new("Frame")
  24.  
  25. DaHoodGui.Name = "Da Hood Gui"
  26. DaHoodGui.Parent = game.CoreGui
  27.  
  28. OpenButton.Name = "OpenButton"
  29. OpenButton.Parent = DaHoodGui
  30. OpenButton.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  31. OpenButton.BorderSizePixel = 0
  32. OpenButton.Position = UDim2.new(0, 0, 0.640625, 0)
  33. OpenButton.Size = UDim2.new(0, 139, 0, 50)
  34. OpenButton.Font = Enum.Font.Cartoon
  35. OpenButton.FontSize = Enum.FontSize.Size14
  36. OpenButton.Text = "OPEN"
  37. OpenButton.TextColor3 = Color3.new(1, 1, 1)
  38. OpenButton.TextScaled = true
  39. OpenButton.TextSize = 14
  40. OpenButton.TextWrapped = true
  41. OpenButton.MouseButton1Down:connect(function()
  42. Main.Visible = true
  43. CloseButton.Visible = true
  44. OpenButton.Visible = false
  45. end)
  46.  
  47. CloseButton.Name = "CloseButton"
  48. CloseButton.Parent = DaHoodGui
  49. CloseButton.Visible = false
  50. CloseButton.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  51. CloseButton.BorderSizePixel = 0
  52. CloseButton.Position = UDim2.new(0, 0, 0.640625, 0)
  53. CloseButton.Size = UDim2.new(0, 139, 0, 50)
  54. CloseButton.Font = Enum.Font.Cartoon
  55. CloseButton.FontSize = Enum.FontSize.Size14
  56. CloseButton.Text = "CLOSE"
  57. CloseButton.TextColor3 = Color3.new(1, 1, 1)
  58. CloseButton.TextScaled = true
  59. CloseButton.TextSize = 14
  60. CloseButton.TextWrapped = true
  61. CloseButton.MouseButton1Down:connect(function()
  62. Main.Visible = false
  63. CloseButton.Visible = false
  64. OpenButton.Visible = true
  65. end)
  66.  
  67. Main.Name = "Main"
  68. Main.Parent = DaHoodGui
  69. Main.Draggable = true
  70. Main.Active = true
  71. Main.Visible = false
  72. Main.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  73. Main.BorderSizePixel = 0
  74. Main.BackgroundTransparency = 0.69999998807907
  75. Main.Position = UDim2.new(0.187782809, 0, 0.0809327811, 0)
  76. Main.Size = UDim2.new(0, 652, 0, 500)
  77.  
  78. Title.Name = "Title"
  79. Title.Parent = Main
  80. Title.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  81. Title.BorderSizePixel = 0
  82. Title.Size = UDim2.new(0, 652, 0, 50)
  83. Title.Font = Enum.Font.SourceSansBold
  84. Title.FontSize = Enum.FontSize.Size48
  85. Title.Text = "Created by Tay-K#2778"
  86. Title.TextColor3 = Color3.new(1, 1, 1)
  87. Title.TextSize = 40
  88. Title.TextWrapped = true
  89.  
  90. WalkspeedQ.Name = "WalkspeedQ"
  91. WalkspeedQ.Parent = Main
  92. WalkspeedQ.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  93. WalkspeedQ.BorderSizePixel = 0
  94. WalkspeedQ.Position = UDim2.new(0.0178603820, 0, 0.112641335, 0)
  95. WalkspeedQ.Size = UDim2.new(0, 300, 0, 50)
  96. WalkspeedQ.Font = Enum.Font.Bodoni
  97. WalkspeedQ.FontSize = Enum.FontSize.Size32
  98. WalkspeedQ.Text = "SpeedHax [Q]"
  99. WalkspeedQ.TextColor3 = Color3.new(1, 1, 1)
  100. WalkspeedQ.TextSize = 30
  101. WalkspeedQ.MouseButton1Down:connect(function()
  102. local walkspeedplayer = game:GetService("Players").LocalPlayer
  103. local walkspeedmouse = walkspeedplayer:GetMouse()
  104.  
  105. local walkspeedenabled = false
  106.  
  107. function x_walkspeed(key)
  108. if (key == "q") then
  109. if walkspeedenabled == false then
  110. _G.WS = 200;
  111. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  112. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  113. Humanoid.WalkSpeed = _G.WS;
  114. end)
  115. Humanoid.WalkSpeed = _G.WS;
  116.  
  117. walkspeedenabled = true
  118. elseif walkspeedenabled == true then
  119. _G.WS = 20;
  120. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  121. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  122. Humanoid.WalkSpeed = _G.WS;
  123. end)
  124. Humanoid.WalkSpeed = _G.WS;
  125.  
  126. walkspeedenabled = false
  127. end
  128. end
  129. end
  130.  
  131. walkspeedmouse.KeyDown:connect(x_walkspeed)
  132.  
  133. end)
  134.  
  135. NoclipB.Name = "NoclipB"
  136. NoclipB.Parent = Main
  137. NoclipB.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  138. NoclipB.BorderSizePixel = 0
  139. NoclipB.Position = UDim2.new(0.0178603820, 0, 0.212641335, 0)
  140. NoclipB.Size = UDim2.new(0, 300, 0, 50)
  141. NoclipB.Font = Enum.Font.Bodoni
  142. NoclipB.FontSize = Enum.FontSize.Size32
  143. NoclipB.Text = "Noclip [B]"
  144. NoclipB.TextColor3 = Color3.new(1, 1, 1)
  145. NoclipB.TextSize = 30
  146. NoclipB.MouseButton1Down:connect(function()
  147.  
  148. local noclipplayer = game:GetService("Players").LocalPlayer
  149. local noclipmouse = noclipplayer:GetMouse()
  150.  
  151. local donoclip = false
  152. local noclip = false
  153.  
  154. function b_noclip(key)
  155. if (key == "b") then
  156. if noclip == false then
  157. donoclip = true
  158.  
  159. noclip = true
  160. elseif noclip == true then
  161. donoclip = false
  162.  
  163. noclip = false
  164. end
  165. end
  166. end
  167.  
  168. noclipmouse.KeyDown:connect(b_noclip)
  169.  
  170. game:GetService("Players").LocalPlayer.Character.Head.Touched:connect(function(obj)
  171. if obj ~= workspace.Terrain then
  172. if donoclip == true then
  173. obj.CanCollide = false
  174. else
  175. obj.CanCollide = true
  176. end
  177. end
  178. end)
  179. end)
  180.  
  181. GravityON.Name = "Gravity ON"
  182. GravityON.Parent = Main
  183. GravityON.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  184. GravityON.BorderSizePixel = 0
  185. GravityON.Position = UDim2.new(0.0178603820, 0, 0.312641335, 0)
  186. GravityON.Size = UDim2.new(0, 300, 0, 50)
  187. GravityON.Font = Enum.Font.Bodoni
  188. GravityON.FontSize = Enum.FontSize.Size32
  189. GravityON.Text = "Gravity: ON"
  190. GravityON.TextColor3 = Color3.new(1, 1, 1)
  191. GravityON.TextSize = 30
  192. GravityON.MouseButton1Down:connect(function()
  193. game.Workspace.Gravity = 196.2
  194. GravityOFF.Visible = true
  195. GravityON.Visible = false
  196. end)
  197.  
  198. Godmode.Name = "Godmode-Sorta Works"
  199. Godmode.Parent = Main
  200. Godmode.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  201. Godmode.BorderSizePixel = 0
  202. Godmode.Position = UDim2.new(0.0178603820, 0, 0.412641335, 0)
  203. Godmode.Size = UDim2.new(0, 300, 0, 50)
  204. Godmode.Font = Enum.Font.Bodoni
  205. Godmode.FontSize = Enum.FontSize.Size32
  206. Godmode.Text = "Godmode-Sorta Works"
  207. Godmode.TextColor3 = Color3.new(1, 1, 1)
  208. Godmode.TextSize = 30
  209. Godmode.MouseButton1Down:connect(function()
  210. game:GetService("Players").LocalPlayer.Character.Humanoid.Name = 1
  211. local l = game:GetService("Players").LocalPlayer.Character["1"]:Clone()
  212. l.Parent = game:GetService("Players").LocalPlayer.Character
  213. l.Name = "Humanoid"
  214. wait(0.1)
  215. game:GetService("Players").LocalPlayer.Character["1"]:Destroy()
  216. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players").LocalPlayer.Character
  217. game:GetService("Players").LocalPlayer.Character.Animate.Disabled = true
  218. wait(0.1)
  219. game:GetService("Players").LocalPlayer.Character.Animate.Disabled = false
  220. game:GetService("Players").LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  221. end)
  222.  
  223. GravityOFF.Name = "Gravity OFF"
  224. GravityOFF.Parent = Main
  225. GravityOFF.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  226. GravityOFF.BorderSizePixel = 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement