twixkevin

TP

Mar 9th, 2022
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.54 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 = "Da Hood Gui | Created by Mythitem."
  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
  227. GravityOFF.Position = UDim2.new(0.0178603820, 0, 0.512641335, 0)
  228. GravityOFF.Size = UDim2.new(0, 300, 0, 50)
  229. GravityOFF.Font = Enum.Font.Bodoni
  230. GravityOFF.FontSize = Enum.FontSize.Size32
  231. GravityOFF.Text = "Gravity: OFF"
  232. GravityOFF.TextColor3 = Color3.new(1, 1, 1)
  233. GravityOFF.TextSize = 30
  234. GravityOFF.MouseButton1Down:connect(function()
  235. game.Workspace.Gravity = 35
  236. GravityOFF.Visible = false
  237. GravityON.Visible = true
  238. end)
  239.  
  240. BTools.Name = "BTools"
  241. BTools.Parent = Main
  242. BTools.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  243. BTools.BorderSizePixel = 0
  244. BTools.Position = UDim2.new(0.0178603820, 0, 0.612641335, 0)
  245. BTools.Size = UDim2.new(0, 300, 0, 50)
  246. BTools.Font = Enum.Font.Bodoni
  247. BTools.FontSize = Enum.FontSize.Size32
  248. BTools.Text = "BTools"
  249. BTools.TextColor3 = Color3.new(1, 1, 1)
  250. BTools.TextSize = 30
  251. BTools.MouseButton1Down:connect(function()
  252. game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
  253. for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
  254. if child.ClassName == "Part" then
  255. child.Locked = false
  256. end
  257. if child.ClassName == "MeshPart" then
  258. child.Locked = false
  259. end
  260. if child.ClassName == "UnionOperation" then
  261. child.Locked = false
  262. end
  263. if child.ClassName == "Model" then
  264. for index, chil in pairs(child:GetChildren()) do
  265. if chil.ClassName == "Part" then
  266. chil.Locked = false
  267. end
  268. if chil.ClassName == "MeshPart" then
  269. chil.Locked = false
  270. end
  271. if chil.ClassName == "UnionOperation" then
  272. chil.Locked = false
  273. end
  274. if chil.ClassName == "Model" then
  275. for index, childe in pairs(chil:GetChildren()) do
  276. if childe.ClassName == "Part" then
  277. childe.Locked = false
  278. end
  279. if childe.ClassName == "MeshPart" then
  280. childe.Locked = false
  281. end
  282. if childe.ClassName == "UnionOperation" then
  283. childe.Locked = false
  284. end
  285. if childe.ClassName == "Model" then
  286. for index, childeo in pairs(childe:GetChildren()) do
  287. if childeo.ClassName == "Part" then
  288. childeo.Locked = false
  289. end
  290. if childeo.ClassName == "MeshPart" then
  291. childeo.Locked = false
  292. end
  293. if childeo.ClassName == "UnionOperation" then
  294. childeo.Locked = false
  295. end
  296. if childeo.ClassName == "Model" then
  297. end
  298. end
  299. end
  300. end
  301. end
  302. end
  303. end
  304. end
  305. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  306. c.BinType = Enum.BinType.Hammer
  307. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  308. c.BinType = Enum.BinType.Clone
  309. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  310. c.BinType = Enum.BinType.Grab
  311. end)
  312.  
  313. InfiniteJump.Name = "Infinite Jump"
  314. InfiniteJump.Parent = Main
  315. InfiniteJump.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  316. InfiniteJump.BorderSizePixel = 0
  317. InfiniteJump.Position = UDim2.new(0.0178603820, 0, 0.712641335, 0)
  318. InfiniteJump.Size = UDim2.new(0, 300, 0, 50)
  319. InfiniteJump.Font = Enum.Font.Bodoni
  320. InfiniteJump.FontSize = Enum.FontSize.Size32
  321. InfiniteJump.Text = "Infinite Jump"
  322. InfiniteJump.TextColor3 = Color3.new(1, 1, 1)
  323. InfiniteJump.TextSize = 30
  324. InfiniteJump.MouseButton1Down:connect(function()
  325. game:GetService("UserInputService").JumpRequest:connect(function()
  326. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  327. end)
  328. end)
  329.  
  330. InputPlayer.Name = "InputPlayer"
  331. InputPlayer.Parent = Main
  332. InputPlayer.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  333. InputPlayer.BorderSizePixel = 0
  334. InputPlayer.Position = UDim2.new(0.0178603820, 0, 0.812641335, 0)
  335. InputPlayer.Size = UDim2.new(0, 300, 0, 50)
  336. InputPlayer.Font = Enum.Font.Cartoon
  337. InputPlayer.FontSize = Enum.FontSize.Size14
  338. InputPlayer.Text = "Player"
  339. InputPlayer.TextColor3 = Color3.new(1, 1, 1)
  340. InputPlayer.TextScaled = true
  341. InputPlayer.TextSize = 14
  342. InputPlayer.TextWrapped = true
  343.  
  344. GotoPlayer.Name = "Goto Player"
  345. GotoPlayer.Parent = Main
  346. GotoPlayer.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  347. GotoPlayer.BorderSizePixel = 0
  348. GotoPlayer.Position = UDim2.new(0.478603820, 0, 0.812641335, 0)
  349. GotoPlayer.Size = UDim2.new(0, 300, 0, 50)
  350. GotoPlayer.Font = Enum.Font.Bodoni
  351. GotoPlayer.FontSize = Enum.FontSize.Size32
  352. GotoPlayer.Text = "Goto Player"
  353. GotoPlayer.TextColor3 = Color3.new(1, 1, 1)
  354. GotoPlayer.TextSize = 30
  355. GotoPlayer.MouseButton1Down:connect(function()
  356. local tp_namedplayer = InputPlayer.Text
  357. local tp_player = game:GetService("Players")[tp_namedplayer]
  358. local PLR = game:GetService("Players").LocalPlayer
  359. local p = InputPlayer.Text
  360.  
  361. if tp_player then
  362. for i = 1,20 do
  363. wait()
  364. PLR.Character.HumanoidRootPart.CFrame = tp_player.Character.HumanoidRootPart.CFrame + Vector3.new(0, 3, 0)
  365. end
  366. end
  367. end)
  368.  
  369. OpenTP_2.Name = "OpenTP"
  370. OpenTP_2.Parent = Main
  371. OpenTP_2.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  372. OpenTP_2.BorderSizePixel = 0
  373. OpenTP_2.Position = UDim2.new(0.478603820, 0, 0.112641335, 0)
  374. OpenTP_2.Size = UDim2.new(0, 300, 0, 50)
  375. OpenTP_2.Font = Enum.Font.Bodoni
  376. OpenTP_2.Text = "Click to TP"
  377. OpenTP_2.TextColor3 = Color3.new(1, 1, 1)
  378. OpenTP_2.TextSize = 30
  379.  
  380. OpenTP_2.MouseButton1Down:connect(function()
  381. warn('xd')
  382. bin=Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  383. bin.Name = "Teleport"
  384.  
  385. function teleportPlayer(pos)
  386.  
  387. local player = game.Players.LocalPlayer
  388. if player == nil or player.Character == nil then return end
  389.  
  390. local char = player.Character
  391.  
  392. char:MoveTo(pos)
  393.  
  394. end
  395.  
  396.  
  397. enabled = true
  398. function onButton1Down(mouse)
  399. if not enabled then
  400. return
  401. end
  402.  
  403. local player = game.Players.LocalPlayer
  404. if player == nil then return end
  405. local cf = mouse.Hit
  406. teleportPlayer(cf.p)
  407.  
  408. end
  409.  
  410. function onSelected(mouse)
  411. mouse.Button1Down:connect(function() onButton1Down(mouse) end)
  412. end
  413.  
  414. bin.Selected:connect(onSelected)
  415.  
  416. end)
Add Comment
Please, Sign In to add comment