RealDOGGODEVELOPER

BloxHDWYGD!GDG!*GWD

Nov 14th, 2019
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.17 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://pastebin.com/raw/eWKgbdix", true))()
  2. library.options.underlinecolor = "rainbow"
  3. local w = library:CreateWindow('BloxHunt')
  4. w:Section('Player Setting')
  5. local box = w:Box('WalkSpeed', {
  6. flag = "ws";
  7. type = 'number';
  8. }, function(new, old, enter)
  9. print(new, old, enter)
  10. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = tonumber(new)
  11. end)
  12.  
  13. w:Section('Combat Settings')
  14.  
  15. local b = w:Button("Silent aim", function()
  16. function getplrsname()
  17. for i,v in pairs(game:GetChildren()) do
  18. if v.ClassName == "Players" then
  19. return v.Name
  20. end
  21. end
  22. end
  23. local players = getplrsname()
  24. local plr = game[players].LocalPlayer
  25. coroutine.resume(coroutine.create(function()
  26. while wait(1) do
  27. coroutine.resume(coroutine.create(function()
  28. for _,v in pairs(game[players]:GetPlayers()) do
  29. if v.Name ~= plr.Name and v.Character then
  30. v.Character.HumanoidRootPart.CanCollide = false
  31. v.Character.HumanoidRootPart.Transparency = 10
  32. v.Character.HumanoidRootPart.Size = Vector3.new(12,12,12)
  33. end
  34. end
  35. end))
  36. end
  37. end))
  38. end)
  39. w:Section('Misc')
  40.  
  41. local b = w:Button("Inf Health", function()
  42. game.ReplicatedStorage.GameFunctions.StatChange:FireServer("Health", 10000)
  43. end)
  44.  
  45. local b = w:Button("Inf Energy", function()
  46. game.ReplicatedStorage.GameFunctions.StatChange:FireServer("Energy", 10000)
  47. end)
  48.  
  49. local b = w:Button("Esp", function()
  50. local Holder = Instance.new("Folder", game.CoreGui)
  51. Holder.Name = "ESP"
  52.  
  53. local Box = Instance.new("BoxHandleAdornment")
  54. Box.Name = "nilBox"
  55. Box.Size = Vector3.new(4, 7, 4)
  56. Box.Color3 = Color3.new(100 / 255, 100 / 255, 100 / 255)
  57. Box.Transparency = 0.7
  58. Box.ZIndex = 0
  59. Box.AlwaysOnTop = true
  60. Box.Visible = true
  61.  
  62. local NameTag = Instance.new("BillboardGui")
  63. NameTag.Name = "nilNameTag"
  64. NameTag.Enabled = false
  65. NameTag.Size = UDim2.new(0, 200, 0, 50)
  66. NameTag.AlwaysOnTop = true
  67. NameTag.StudsOffset = Vector3.new(0, 1.8, 0)
  68. local Tag = Instance.new("TextLabel", NameTag)
  69. Tag.Name = "Tag"
  70. Tag.BackgroundTransparency = 1
  71. Tag.Position = UDim2.new(0, -50, 0, 0)
  72. Tag.Size = UDim2.new(0, 300, 0, 20)
  73. Tag.TextSize = 20
  74. Tag.TextColor3 = Color3.new(100 / 255, 100 / 255, 100 / 255)
  75. Tag.TextStrokeColor3 = Color3.new(0 / 255, 0 / 255, 0 / 255)
  76. Tag.TextStrokeTransparency = 0.4
  77. Tag.Text = "nil"
  78. Tag.Font = Enum.Font.SourceSansBold
  79. Tag.TextScaled = false
  80.  
  81. local LoadCharacter = function(v)
  82. repeat wait() until v.Character ~= nil
  83. v.Character:WaitForChild("Humanoid")
  84. local vHolder = Holder:FindFirstChild(v.Name)
  85. vHolder:ClearAllChildren()
  86. local b = Box:Clone()
  87. b.Name = v.Name .. "Box"
  88. b.Adornee = v.Character
  89. b.Parent = vHolder
  90. local t = NameTag:Clone()
  91. t.Name = v.Name .. "NameTag"
  92. t.Enabled = true
  93. t.Parent = vHolder
  94. t.Adornee = v.Character:WaitForChild("Head", 5)
  95. if not t.Adornee then
  96. return UnloadCharacter(v)
  97. end
  98. t.Tag.Text = v.Name
  99. b.Color3 = Color3.new(v.TeamColor.r, v.TeamColor.g, v.TeamColor.b)
  100. t.Tag.TextColor3 = Color3.new(v.TeamColor.r, v.TeamColor.g, v.TeamColor.b)
  101. local Update
  102. local UpdateNameTag = function()
  103. if not pcall(function()
  104. v.Character.Humanoid.DisplayDistanceType = Enum.HumanoidDisplayDistanceType.None
  105. local maxh = math.floor(v.Character.Humanoid.MaxHealth)
  106. local h = math.floor(v.Character.Humanoid.Health)
  107. t.Tag.Text = v.Name .. "\n" .. ((maxh ~= 0 and tostring(math.floor((h / maxh) * 100))) or "0") .. "% " .. tostring(h) .. "/" .. tostring(maxh)
  108. end) then
  109. Update:Disconnect()
  110. end
  111. end
  112. UpdateNameTag()
  113. Update = v.Character.Humanoid.Changed:Connect(UpdateNameTag)
  114. end
  115.  
  116. local UnloadCharacter = function(v)
  117. local vHolder = Holder:FindFirstChild(v.Name)
  118. if vHolder and (vHolder:FindFirstChild(v.Name .. "Box") ~= nil or vHolder:FindFirstChild(v.Name .. "NameTag") ~= nil) then
  119. vHolder:ClearAllChildren()
  120. end
  121. end
  122.  
  123. local LoadPlayer = function(v)
  124. local vHolder = Instance.new("Folder", Holder)
  125. vHolder.Name = v.Name
  126. v.CharacterAdded:Connect(function()
  127. pcall(LoadCharacter, v)
  128. end)
  129. v.CharacterRemoving:Connect(function()
  130. pcall(UnloadCharacter, v)
  131. end)
  132. v.Changed:Connect(function(prop)
  133. if prop == "TeamColor" then
  134. UnloadCharacter(v)
  135. wait()
  136. LoadCharacter(v)
  137. end
  138. end)
  139. LoadCharacter(v)
  140. end
  141.  
  142. local UnloadPlayer = function(v)
  143. UnloadCharacter(v)
  144. local vHolder = Holder:FindFirstChild(v.Name)
  145. if vHolder then
  146. vHolder:Destroy()
  147. end
  148. end
  149.  
  150. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  151. spawn(function() pcall(LoadPlayer, v) end)
  152. end
  153.  
  154. game:GetService("Players").PlayerAdded:Connect(function(v)
  155. pcall(LoadPlayer, v)
  156. end)
  157.  
  158. game:GetService("Players").PlayerRemoving:Connect(function(v)
  159. pcall(UnloadPlayer, v)
  160. end)
  161.  
  162. game:GetService("Players").LocalPlayer.NameDisplayDistance = 0
  163. end)
  164.  
  165. local w = library:CreateWindow('More Settings')
  166. w:Section('Farming')
  167. local b = w:Button("Coin Farm", function()
  168. _G.CoinFarm = true
  169. while _G.CoinFarm == true do
  170. wait ()
  171. game.Workspace.Lobby.LobbyObby.Token.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  172. game.Workspace.Lobby.LobbyObby.Token.CanCollide = false
  173. game.Workspace.Lobby.LobbyObby.Token.Transparency = 1
  174. game.Workspace.LavaObby.Token.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  175. game.Workspace.LavaObby.Token.CanCollide = false
  176. game.Workspace.LavaObby.Token.Transparency = 1
  177. game.ReplicatedStorage.GameFunctions.Taunt:FireServer()
  178. end
  179. end)
  180.  
  181. local b = w:Button("Coin Farm OFF", function()
  182. _G.CoinFarm = false
  183. wait (0.3)
  184. _G.CoinFarm = false
  185. wait (0.3)
  186. _G.CoinFarm = false
  187. wait (0.3)
  188. end)
  189.  
  190. w:Section('FunStuff')
  191.  
  192.  
  193. local b = w:Button("Unlock Gamepasses", function()
  194. local g = game.Players.LocalPlayer.Information.Gamepasses
  195. g.FaceChanger.Value = false
  196. g.Vanish.Value = false
  197. g.Cloner.Value = false
  198. g.InstantHide.Value = false
  199. g.Radar.Value = false
  200. g.Walkspeed.Value = false
  201. g.AutoSeeker.Value = false
  202. g.SeekerPoints.Value = false
  203. wait ()
  204. g.FaceChanger.Value = true
  205. g.Vanish.Value = true
  206. g.Cloner.Value = true
  207. g.InstantHide.Value = true
  208. g.Radar.Value = true
  209. g.Walkspeed.Value = true
  210. g.AutoSeeker.Value = true
  211. g.SeekerPoints.Value = true
  212. end)
  213.  
  214.  
  215. local b = w:Button("Delete Lobby", function()
  216. local tbl_main =
  217. {
  218. game:GetService("Workspace").Lobby
  219. }
  220. game:GetService("ReplicatedStorage").GameFunctions.ChangeObject:InvokeServer(unpack(tbl_main))
  221. game.Players.LocalPlayer.Character:Remove()
  222. end)
  223.  
  224. local w = library:CreateWindow('teleports')
  225. w:Section('List')
  226.  
  227. local b = w:Button("BloxShop", function()
  228. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-171.46756, 36.1999474, 17.4766827)
  229. end)
  230.  
  231. local b = w:Button("Lobby", function()
  232. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-4.4916172, 41.399971, 16.4080391)
  233. end)
  234.  
  235.  
  236. local b = w:Button("Old Spawn", function()
  237. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-166.181961, 4.60007715, -67.3096848)
  238. end)
  239.  
  240.  
  241. local b = w:Button("Pakour Token", function()
  242. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-86.3323669, 61.4000931, 144.601578)
  243. end)
  244.  
  245.  
  246. local b = w:Button("Cave under spawn", function()
  247. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-4.19754934, 9.00008202, 8.88850594)
  248. end)
  249.  
  250.  
  251. local b = w:Button("Gamepasses", function()
  252. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-128.864151, 34.2001686, -26.4871292)
  253. end)
Advertisement
Add Comment
Please, Sign In to add comment