Advertisement
keexers

Da Hood Hitbox Expander Script (FOR LEARNING PURPOSES)

Jan 4th, 2025
2,366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.49 KB | Gaming | 0 0
  1. local size = 20
  2.  
  3. local Players = cloneref(game:GetService("Players"))
  4. local RS = cloneref(game:GetService("RunService"))
  5. local Client = Players.LocalPlayer
  6. RS.RenderStepped:Connect(function ()
  7.     for _, Player in pairs(Players:GetPlayers()) do
  8.         if Player == Client then continue end
  9.         local HRP = Player.Character:WaitForChild("HumanoidRootPart")
  10.         HRP.Size = Vector3.new(size, size, size)
  11.         HRP.CanCollide = false
  12.         HRP.Transparency = 0.5
  13.     end
  14. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement