Advertisement
Ihf987dYF97dhsfoHF9

Roblox Blood and Iron Hitbox Expander

Jul 1st, 2023
868
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. --Hitbox Extender
  2. --Change 20 to your desired size
  3. --Change the white to your desired color (I recommend white)
  4. _G.HeadSize = 8
  5. _G.Disabled = true
  6.  
  7. game:GetService('RunService').RenderStepped:connect(function()
  8. if _G.Disabled then
  9. for i,v in next, game:GetService('Players'):GetPlayers() do
  10. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  11. pcall(function()
  12. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  13. v.Character.HumanoidRootPart.Transparency = 0.9
  14. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really red")
  15. v.Character.HumanoidRootPart.Material = "Neon"
  16. v.Character.HumanoidRootPart.CanCollide = false
  17. end)
  18. end
  19. end
  20. end
  21. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement