Advertisement
Guest User

Untitled

a guest
Jul 28th, 2019
1,906
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.51 KB | None | 0 0
  1. --Chest ESP + hitbox expander
  2. --Chest ESP made by Jan#5106
  3. --Hitbox expander made by SenpaiPlayz on novo.fm
  4.  
  5. --using _G because I can't be asked to make a gui
  6. _G.textcolor = Color3.fromRGB(255,60,60)
  7. _G.textstroketrans = 0
  8. _G.boundingbox = true
  9. _G.boundcolor = Color3.fromRGB(255,60,60)
  10.  
  11. for i,v in pairs(workspace.LootSpawns:GetChildren()) do
  12.  
  13. local bbg = Instance.new("BillboardGui", v)
  14. bbg.Name = v.Name
  15. bbg.AlwaysOnTop = true
  16. bbg.Size = UDim2.new(2,0,2,0)
  17. bbg.ClipsDescendants = false
  18.  
  19. local bound = Instance.new("Frame", bbg)
  20. bound.Size = UDim2.new(1,0,1,0)
  21. bound.BorderSizePixel = 0
  22. bound.BackgroundTransparency = 1
  23. local left = Instance.new("Frame", bound)
  24. left.BorderSizePixel = 0
  25. left.Size = UDim2.new(0,1,1,0)
  26. local right = left:Clone()
  27. right.Parent = bound
  28. right.Size = UDim2.new(0,-1,1,0)
  29. right.Position = UDim2.new(1,0,0,0)
  30. local up = left:Clone()
  31. up.Parent = bound
  32. up.Size = UDim2.new(1,0,0,1)
  33. local down = left:Clone()
  34. down.Parent = bound
  35. down.Size = UDim2.new(1,0,0,-1)
  36. down.Position = UDim2.new(0,0,1,0)
  37.  
  38. local ctext = Instance.new("TextLabel", bbg)
  39. ctext.AnchorPoint = Vector2.new(0.5,1)
  40. ctext.BackgroundTransparency = 1
  41. ctext.Text = v.Name
  42. ctext.TextYAlignment = Enum.TextYAlignment.Bottom
  43. ctext.Position = UDim2.new(0.5,0,0,1)
  44.  
  45. co = coroutine.create(function()
  46. while wait(2) do
  47. for i,c in pairs(v:FindFirstChild"AnimationController":GetChildren()) do
  48. if i <= 1 then
  49. left.BackgroundColor3 = _G.boundcolor
  50. right.BackgroundColor3 = _G.boundcolor
  51. up.BackgroundColor3 = _G.boundcolor
  52. down.BackgroundColor3 = _G.boundcolor
  53. ctext.TextColor3 = _G.textcolor
  54. ctext.TextStrokeTransparency = _G.textstroketrans
  55. if _G.boundingbox == true then
  56. bound.Visible = true
  57. else
  58. bound.Visible = false
  59. end
  60. else
  61. bbg:Destroy()
  62. coroutine.yield()
  63. end
  64. end
  65. end
  66. end)
  67. coroutine.resume(co)
  68. end
  69.  
  70. -- this is the hitbox thinghy :D credits: SenpaiPlays on novo.fm
  71. local bindableFunction= Instance.new("BindableFunction") --exucute in plane
  72. game.StarterGui:SetCore("SendNotification", {
  73. Title = "Loading Hitbox ...";
  74. Text = "Please Wait!";
  75. Duration = 2;
  76. callback = "1";
  77. })
  78. wait (5)
  79. _G.HeadSize = 7 --how big the headzide is i recoment 20 or 10 so it dont look like your hacking/exploiting
  80. _G.Disabled = true --dont change or will not work
  81.  
  82. game:GetService('RunService').RenderStepped:connect(function()
  83. if _G.Disabled then --exucute in plane
  84. for i,v in next, game:GetService('Players'):GetPlayers() do
  85. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  86. pcall(function()
  87. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  88. v.Character.HumanoidRootPart.Transparency = 0.5 -- Change the 10 to 0 to see teh hit box
  89. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("White") --exucute in plane
  90. v.Character.HumanoidRootPart.Material = "plastic" --exucute in plane
  91. v.Character.HumanoidRootPart.CanCollide = true --exucute in plane
  92. end)
  93. end
  94. end
  95. end
  96. end)
  97. print("Hitbox Inject !")
  98. game.StarterGui:SetCore("SendNotification", {
  99. Title = "Alone Battle Royale Hitbox Inject!";
  100. Text = "Info : if your to close to your team mate it wil froze you ore kill you";
  101. Duration = 6;
  102. callback = 6;
  103. })
  104. game.StarterGui:SetCore("SendNotification", {
  105. Title = "The Hitbox is Invisible Enjoy !";
  106. Text = "Edit By : DoggoDevloper";
  107. Duration = 6;
  108. callback = 6;
  109. })
  110. print ("| --==-- | Edit By: DoggoDevloper | --==-- |")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement