Advertisement
kodythebossYT

Da Hood Hub - 3

Feb 2nd, 2021
2,180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.88 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextLabel")
  9. local combatgui1 = Instance.new("TextButton")
  10. local combatgui2 = Instance.new("TextButton")
  11. local combatgui3 = Instance.new("TextButton")
  12. local autofarmgui1 = Instance.new("TextButton")
  13. local autofarmgui2 = Instance.new("TextButton")
  14. local TextButton = Instance.new("TextButton")
  15. local TextLabel_2 = Instance.new("TextLabel")
  16. local TextButton_2 = Instance.new("TextButton")
  17.  
  18. --Properties:
  19.  
  20. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  21.  
  22. Frame.Parent = ScreenGui
  23. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  24. Frame.Position = UDim2.new(0.417515248, 0, 0.219999999, 0)
  25. Frame.Size = UDim2.new(0, 161, 0, 252)
  26. Frame.Visible = false
  27. Frame.Style = Enum.FrameStyle.DropShadow
  28. Frame.Active = true
  29. Frame.Draggable = true
  30.  
  31. TextLabel.Parent = Frame
  32. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  33. TextLabel.BackgroundTransparency = 1.000
  34. TextLabel.Position = UDim2.new(0.0293857716, 0, 0.00630702451, 0)
  35. TextLabel.Size = UDim2.new(0, 138, 0, 21)
  36. TextLabel.Font = Enum.Font.Jura
  37. TextLabel.Text = "Da Hood Hub"
  38. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  39. TextLabel.TextSize = 22.000
  40.  
  41. combatgui1.Name = "combat gui - 1"
  42. combatgui1.Parent = Frame
  43. combatgui1.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  44. combatgui1.Position = UDim2.new(0.0255777836, 0, 0.137944058, 0)
  45. combatgui1.Size = UDim2.new(0, 140, 0, 25)
  46. combatgui1.Style = Enum.ButtonStyle.RobloxButton
  47. combatgui1.Font = Enum.Font.SourceSansItalic
  48. combatgui1.Text = "combat gui - 1"
  49. combatgui1.TextColor3 = Color3.fromRGB(255, 255, 255)
  50. combatgui1.TextSize = 18.000
  51. combatgui1.MouseButton1Down:connect(function()
  52. loadstring(game:GetObjects("rbxassetid://5812737894")[1].Source)()
  53. end)
  54.  
  55. combatgui2.Name = "combat gui - 2"
  56. combatgui2.Parent = combatgui1
  57. combatgui2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  58. combatgui2.Position = UDim2.new(-0.0744222179, 0, 2.89794397, 0)
  59. combatgui2.Size = UDim2.new(0, 140, 0, 25)
  60. combatgui2.Style = Enum.ButtonStyle.RobloxButton
  61. combatgui2.Font = Enum.Font.SourceSansItalic
  62. combatgui2.Text = "combat gui - 2"
  63. combatgui2.TextColor3 = Color3.fromRGB(255, 255, 255)
  64. combatgui2.TextSize = 18.000
  65. combatgui2.MouseButton1Down:connect(function()
  66. --// Clone Detection
  67. for i, v in pairs(game:GetService("CoreGui"):GetChildren()) do
  68. if v.Name == "ScreenGui" then
  69. v:Destroy()
  70. end
  71. end
  72.  
  73. repeat
  74. wait()
  75. until game:GetService("Players").LocalPlayer ~= nil
  76.  
  77. if not game:GetService("Players").LocalPlayer.Character then
  78. game:GetService("Players").LocalPlayer.CharacterAdded:Wait()
  79. end
  80.  
  81.  
  82.  
  83. --/ Variables & Da Hood Gui Clones Deletion
  84.  
  85. local LocalPlayer = game:GetService("Players").LocalPlayer
  86. local Character = LocalPlayer.Character
  87. local Workspace = game:GetService("Workspace")
  88. local CoreGui = game:GetService("CoreGui")
  89.  
  90. local LockedPlayer = nil
  91. local Aimlock = nil
  92.  
  93. for i, v in pairs(game:GetService("CoreGui"):GetChildren()) do
  94. if v.Name == "dhgui" then
  95. v:Destroy()
  96. end
  97. end
  98.  
  99. local mt = getrawmetatable(game)
  100. local namecall = mt.__namecall
  101. setreadonly(mt, false)
  102.  
  103. if getrawmetatable then
  104. local mt = getrawmetatable(game)
  105. local namecall = mt.__namecall
  106. setreadonly(mt, false)
  107.  
  108. mt.__namecall = newcclosure(function(table, ...)
  109. local args = {...}
  110. local method = getnamecallmethod()
  111. if method == "FireServer" and args[1] and args[1] == "UpdateMousePos" then
  112. if not (args[3] and args[3] == "Aimlock") then
  113. return nil
  114. end
  115. end
  116. return namecall(table, ...)
  117. end)
  118. end
  119.  
  120. local function FindPlrOnMouse()
  121. for i, v in pairs(game.Workspace:FindPartsInRegion3(Region3.new(LocalPlayer:GetMouse().Hit.Position, LocalPlayer:GetMouse().Hit.Position))) do
  122. local plr = game.Players:GetPlayerFromCharacter(v.Parent)
  123. if plr ~= nil and plr ~= LocalPlayer then
  124. return plr
  125. end
  126. end
  127. return nil
  128. end
  129.  
  130. -- // Gui
  131. local ScreenGui = Instance.new("ScreenGui")
  132. local Frame = Instance.new("Frame")
  133. local TextButton = Instance.new("TextButton")
  134. local TextButton_2 = Instance.new("TextButton")
  135. local TextBox = Instance.new("TextBox")
  136.  
  137.  
  138. --// Gui Making
  139.  
  140. ScreenGui.Parent = game.CoreGui
  141. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  142.  
  143. Frame.Parent = ScreenGui
  144. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  145. Frame.Position = UDim2.new(0.30297032, 0, 0.475625843, 0)
  146. Frame.Size = UDim2.new(0, 397, 0, 211)
  147. Frame.Active = true
  148. Frame.Draggable = true
  149.  
  150.  
  151.  
  152. TextButton.Parent = Frame
  153. TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  154. TextButton.Position = UDim2.new(0.0554156154, 0, 0.60189575, 0)
  155. TextButton.Size = UDim2.new(0, 136, 0, 50)
  156. TextButton.Font = Enum.Font.Cartoon
  157. TextButton.Text = "Aimlock Tool"
  158. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  159. TextButton.TextSize = 14.000
  160.  
  161.  
  162. TextButton_2.Parent = Frame
  163. TextButton_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  164. TextButton_2.Position = UDim2.new(0.570553482, 0, 0.60189575, 0)
  165. TextButton_2.Size = UDim2.new(0, 136, 0, 50)
  166. TextButton_2.Font = Enum.Font.Cartoon
  167. TextButton_2.Text = ""
  168. TextButton_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  169. TextButton_2.TextSize = 14.000
  170.  
  171.  
  172.  
  173. TextBox.Parent = Frame
  174. TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  175. TextBox.Position = UDim2.new(0.246851385, 0, 0.218009472, 0)
  176. TextBox.Size = UDim2.new(0, 200, 0, 50)
  177. TextBox.Font = Enum.Font.Cartoon
  178. TextBox.PlaceholderColor3 = Color3.fromRGB(178, 178, 178)
  179. TextBox.Text = ""
  180. TextBox.TextColor3 = Color3.fromRGB(0, 0, 0)
  181. TextBox.TextSize = 14.000
  182.  
  183.  
  184. TextButton.MouseButton1Click:connect(function()
  185. Aimlock = nil
  186.  
  187. for i, v in pairs(LocalPlayer.Backpack:GetChildren()) do
  188. if v.ClassName == "Tool" and v.Name == "Aimlock Tool" then
  189. v:Destroy()
  190. end
  191. end
  192. for i, v in pairs(LocalPlayer.Character:GetChildren()) do
  193. if v.ClassName == "Tool" and v.Name == "Aimlock Tool" then
  194. v:Destroy()
  195. elseif v.ClassName == "Tool" then
  196. v.Parent = LocalPlayer.Backpack
  197. end
  198. end
  199.  
  200. local AimlockTool = Instance.new("Tool")
  201. AimlockTool.Name = "Aimlock Tool"
  202. AimlockTool.Parent = LocalPlayer.Backpack
  203. AimlockTool.RequiresHandle = false
  204. AimlockTool.TextureId = "rbxasset://1532350639"
  205.  
  206. AimlockTool.Activated:Connect(function()
  207. local Plr = FindPlrOnMouse()
  208.  
  209. if Plr ~= nil and Plr.Character and Plr.Character:FindFirstChild("Head") and Plr.Character:FindFirstChild("UpperTorso") then
  210. Aimlock = Plr
  211.  
  212. game:GetService("StarterGui"):SetCore("SendNotification",{
  213. Title = "AIMLOCK | Corpse";
  214. Text = "Aimlocking towards: " .. Plr.Name .. ", use any gun and shoot anywhere";
  215. Button1 = "Ok";
  216. Duration = 2.5;
  217. })
  218. else
  219. Aimlock = nil
  220.  
  221. game:GetService("StarterGui"):SetCore("SendNotification",{
  222. Title = "AIMLOCK | Corpse";
  223. Text = "No player clicked on, aimlocking towards mouse as normal";
  224. Button1 = "Ok";
  225. Duration = 2.5;
  226. })
  227. end
  228. end)
  229. end)
  230.  
  231. if getrawmetatable then
  232. game:GetService("RunService").Heartbeat:Connect(function()
  233. if Aimlock ~= nil and Aimlock.Character and Aimlock.Character:FindFirstChild("Head") then
  234. game.ReplicatedStorage.MainEvent:FireServer("UpdateMousePos", Aimlock.Character.Head.Position, "Aimlock")
  235. elseif Aimlock ~= nil and Aimlock.Character and Aimlock.Character:FindFirstChildOfClass("Part") then
  236. game.ReplicatedStorage.MainEvent:FireServer("UpdateMousePos", Aimlock.Character:FindFirstChildOfClass("Part").Position, "Aimlock")
  237. elseif Aimlock == nil then
  238. game.ReplicatedStorage.MainEvent:FireServer("UpdateMousePos", game:GetService("Players").LocalPlayer:GetMouse().Hit.Position, "Aimlock")
  239. end
  240. end)
  241. else
  242. for i = 1, 10 do
  243. game:GetService("RunService").Heartbeat:Connect(function()
  244. if Aimlock ~= nil and Aimlock.Character and Aimlock.Character:FindFirstChild("Head") then
  245. game.ReplicatedStorage.MainEvent:FireServer("UpdateMousePos", Aimlock.Character.Head.Position)
  246. elseif Aimlock ~= nil and Aimlock.Character and Aimlock.Character:FindFirstChildOfClass("Part") then
  247. game.ReplicatedStorage.MainEvent:FireServer("UpdateMousePos", Aimlock.Character:FindFirstChildOfClass("Part").Position)
  248. end
  249. end)
  250. game:GetService("RunService").RenderStepped:Connect(function()
  251. if Aimlock ~= nil and Aimlock.Character and Aimlock.Character:FindFirstChild("Head") then
  252. game.ReplicatedStorage.MainEvent:FireServer("UpdateMousePos", Aimlock.Character.Head.Position)
  253. elseif Aimlock ~= nil and Aimlock.Character and Aimlock.Character:FindFirstChildOfClass("Part") then
  254. game.ReplicatedStorage.MainEvent:FireServer("UpdateMousePos", Aimlock.Character:FindFirstChildOfClass("Part").Position)
  255. end
  256. end)
  257. game:GetService("RunService").Stepped:Connect(function()
  258. if Aimlock ~= nil and Aimlock.Character and Aimlock.Character:FindFirstChild("Head") then
  259. game.ReplicatedStorage.MainEvent:FireServer("UpdateMousePos", Aimlock.Character.Head.Position)
  260. elseif Aimlock ~= nil and Aimlock.Character and Aimlock.Character:FindFirstChildOfClass("Part") then
  261. game.ReplicatedStorage.MainEvent:FireServer("UpdateMousePos", Aimlock.Character:FindFirstChildOfClass("Part").Position)
  262. end
  263. end)
  264. end
  265. end
  266.  
  267. end)
  268.  
  269. combatgui3.Name = "combat gui - 3"
  270. combatgui3.Parent = combatgui1
  271. combatgui3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  272. combatgui3.Position = UDim2.new(-0.0744222179, 0, 6.25794411, 0)
  273. combatgui3.Size = UDim2.new(0, 140, 0, 25)
  274. combatgui3.Style = Enum.ButtonStyle.RobloxButton
  275. combatgui3.Font = Enum.Font.SourceSansItalic
  276. combatgui3.Text = "combat gui - 3"
  277. combatgui3.TextColor3 = Color3.fromRGB(255, 255, 255)
  278. combatgui3.TextSize = 18.000
  279. combatgui3.MouseButton1Down:connect(function()
  280. loadstring(game:HttpGet("https://raw.githubusercontent.com/XPLOIT-CORPSE/Free/main/SilentAim.lua"))()
  281. end)
  282.  
  283. autofarmgui1.Name = "auto farm gui - 1"
  284. autofarmgui1.Parent = combatgui3
  285. autofarmgui1.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  286. autofarmgui1.Position = UDim2.new(-0.0672793612, 0, 2.37794399, 0)
  287. autofarmgui1.Size = UDim2.new(0, 140, 0, 25)
  288. autofarmgui1.Style = Enum.ButtonStyle.RobloxButton
  289. autofarmgui1.Font = Enum.Font.SourceSansItalic
  290. autofarmgui1.Text = "auto farm gui - 1"
  291. autofarmgui1.TextColor3 = Color3.fromRGB(255, 255, 255)
  292. autofarmgui1.TextSize = 18.000
  293. autofarmgui1.MouseButton1Down:connect(function()
  294. loadstring(game:HttpGet("https://pastebin.com/raw/XPYGwFaT", true))()
  295. end)
  296.  
  297. autofarmgui2.Name = "auto farm gui - 2"
  298. autofarmgui2.Parent = autofarmgui1
  299. autofarmgui2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  300. autofarmgui2.Position = UDim2.new(-0.0744222179, 0, 2.77794409, 0)
  301. autofarmgui2.Size = UDim2.new(0, 140, 0, 25)
  302. autofarmgui2.Style = Enum.ButtonStyle.RobloxButton
  303. autofarmgui2.Font = Enum.Font.SourceSansItalic
  304. autofarmgui2.Text = "auto farm gui - 2"
  305. autofarmgui2.TextColor3 = Color3.fromRGB(255, 255, 255)
  306. autofarmgui2.TextSize = 18.000
  307. autofarmgui2.MouseButton1Down:connect(function()
  308. loadstring(game:HttpGet("https://pastebin.com/raw/AqLV4Wii", true))()
  309. end)
  310.  
  311. TextButton.Parent = autofarmgui2
  312. TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  313. TextButton.Position = UDim2.new(-0.0672793612, 0, 2.617944, 0)
  314. TextButton.Size = UDim2.new(0, 140, 0, 25)
  315. TextButton.Style = Enum.ButtonStyle.RobloxButton
  316. TextButton.Font = Enum.Font.SourceSansItalic
  317. TextButton.Text = "coming soon"
  318. TextButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  319. TextButton.TextSize = 18.000
  320.  
  321. TextLabel_2.Parent = Frame
  322. TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  323. TextLabel_2.BackgroundTransparency = 1.000
  324. TextLabel_2.Position = UDim2.new(0.0164429098, 0, 0.9002437, 0)
  325. TextLabel_2.Size = UDim2.new(0, 143, 0, 23)
  326. TextLabel_2.Font = Enum.Font.Michroma
  327. TextLabel_2.Text = "Made by Kody & Zac"
  328. TextLabel_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  329. TextLabel_2.TextSize = 13.000
  330.  
  331. TextButton_2.Parent = ScreenGui
  332. TextButton_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  333. TextButton_2.Position = UDim2.new(0.950101852, 0, 0.48237884, 0)
  334. TextButton_2.Size = UDim2.new(0, 49, 0, 16)
  335. TextButton_2.Style = Enum.ButtonStyle.RobloxButtonDefault
  336. TextButton_2.Font = Enum.Font.SourceSans
  337. TextButton_2.Text = "open"
  338. TextButton_2.TextColor3 = Color3.fromRGB(0, 255, 0)
  339. TextButton_2.TextSize = 16.000
  340.  
  341. -- Scripts:
  342.  
  343. local function KGMREE_fake_script() -- TextButton_2.Script
  344. local script = Instance.new('Script', TextButton_2)
  345.  
  346. game:GetService("StarterGui").ResetPlayerGuiOnSpawn = false
  347. end
  348. coroutine.wrap(KGMREE_fake_script)()
  349. local function WEUI_fake_script() -- TextButton_2.Script
  350. local script = Instance.new('Script', TextButton_2)
  351.  
  352. local frame = script.Parent.Parent.Frame
  353.  
  354. script.Parent.MouseButton1Click:Connect(function()
  355. if frame.Visible == false then
  356. frame.Visible = true
  357. else
  358. frame.Visible = false
  359. end
  360. end)
  361. end
  362. coroutine.wrap(WEUI_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement