Advertisement
Maks14a

hitbox

May 8th, 2024 (edited)
744
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.18 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://pastebin.com/raw/GGjwwXSC"))()
  2. local Window = Library.CreateLib("Hitbox", "RJTheme1")
  3. local Tab = Window:NewTab("Hitbox")
  4.  
  5.  
  6.  
  7. local Section = Tab:NewSection("")
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15. Section:NewSlider("Hitbox", "", 50, 0, function(s) -- 500 (Макс. значение) | 0 (Мин. значение)
  16.    
  17.  
  18. _G.HeadSize = s
  19. _G.Disabled = true
  20.  
  21. game:GetService('RunService').RenderStepped:connect(function()
  22. if _G.Disabled then
  23. for i,v in next, game:GetService('Players'):GetPlayers() do
  24. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  25. pcall(function()
  26. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  27. v.Character.HumanoidRootPart.Transparency = 0.7
  28. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really blue")
  29. v.Character.HumanoidRootPart.Material = "Neon"
  30. v.Character.HumanoidRootPart.CanCollide = false
  31. end)
  32. end
  33. end
  34. end
  35. end)
  36.  
  37.    
  38. end)
  39.  
  40. Section:NewKeybind("Close|Open", "", Enum.KeyCode.L, function()
  41.  
  42. if game.CoreGui[111].Main.Visible == true then
  43.  
  44.     game.CoreGui[111].Main.Visible = false
  45.  
  46. else
  47.     game.CoreGui[111].Main.Visible = true
  48.  
  49. end
  50.  
  51.  
  52.  
  53. end)
  54.  
  55.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement