Advertisement
Urbanpower

Hitbox Expander - Frontlines

Mar 4th, 2023
315
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. local HitboxSize = Vector3.new(10,10,10) --too big wont work
  2.  
  3.  
  4.  
  5. if getgenv().c then getgenv().c:Disconnect() end
  6.  
  7. getgenv().c = game:GetService("RunService").RenderStepped:Connect(function()
  8.  
  9. for _,v in pairs(workspace:GetChildren()) do
  10.  
  11. if v:IsA("BasePart") and v.Color == Color3.new(1,0,0) then
  12.  
  13. v.Transparency = 0.5
  14.  
  15. v.Size = HitboxSize
  16.  
  17. end
  18.  
  19. end
  20.  
  21. end)
  22.  
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement