Advertisement
SirSaber

Critical Strike Hitbox Extender

Dec 23rd, 2019
1,712
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. AC Bypass :
  2. for i,v in pairs(game:GetService('ReplicatedFirst'):GetDescendants()) do
  3. if v:IsA('LocalScript') then
  4. v.Disabled = true -- Stinky devs
  5. end
  6. end
  7.  
  8. Hitbox Extender :
  9. _G.HeadSize = 10
  10. _G.Disabled = true
  11.  
  12. game:GetService('RunService').RenderStepped:connect(function()
  13. if _G.Disabled then
  14. for i,v in next, game:GetService('Players'):GetPlayers() do
  15. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  16. pcall(function()
  17. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  18. v.Character.HumanoidRootPart.Transparency = 0.9
  19. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("White")
  20. v.Character.HumanoidRootPart.Material = "Neon"
  21. v.Character.HumanoidRootPart.CanCollide = false
  22. end)
  23. end
  24. end
  25. end
  26. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement