DarthFishy-_-

Don't know credits

Feb 25th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. _G.HitBoxSize = Vector3.new(50, 50, 50)
  2.  
  3. game:service('RunService').RenderStepped:connect(function()
  4. for i, v in pairs(game.Workspace.Camera.GameElementContainer.HITBOXES:GetDescendants()) do
  5. if v:IsA('Part') and v.Size ~= _G.HitBoxSize and v.Transparency ~= 0 and v.Name == 'Head' then v.Size = _G.HitBoxSize
  6. v.Transparency = 0
  7. end
  8. end
  9. end)
Add Comment
Please, Sign In to add comment