hitbox expander local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local hitboxSize = 2 local teamCheck = false local function resizeHitbox(player) if player ~= LocalPlayer and player.Character and player.Character:FindFirstChild("HumanoidRootPart") then if not teamCheck or (teamCheck and player.Team ~= LocalPlayer.Team) then local hitbox = player.Character.HumanoidRootPart local desiredSize = Vector3.new(hitboxSize, hitboxSize, hitboxSize) hitbox expander PasteShr hitbox expander if hitbox.Size ~= desiredSize then hitbox.Size = desiredSize hitbox.Transparency = 0.75 hitbox.CanCollide = false if not hitbox:FindFirstChild("HitboxVisualizer") then local visualizer = Instance.new("SelectionBox") visualizer.Name = "HitboxVisualizer" visualizer.Adornee = hitbox hitbox expander How to get it for free? hitbox expander visualizer.Parent = hitbox end end end end end local function resizeAllHitboxes() for _, player in ipairs(Players:GetPlayers()) do resizeHitbox(player) hitbox expander PasteShr hitbox expander end end Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function() wait(1) resizeAllHitboxes() end) end) hitbox expander How to get it? hitbox expander for _, player in ipairs(Players:GetPlayers()) do player.CharacterAdded:Connect(function() wait(1) resizeAllHitboxes() end) end hitbox expander How to dowload it? hitbox expander local function createHitboxGui() if LocalPlayer:FindFirstChild("PlayerGui"):FindFirstChild("HitboxGui") then LocalPlayer.PlayerGui:FindFirstChild("HitboxGui"):Destroy() end local ScreenGui = Instance.new("ScreenGui", LocalPlayer:WaitForChild("PlayerGui")) ScreenGui.Name = "HitboxGui" local Frame = Instance.new("Frame", ScreenGui) Frame.Size = UDim2.new(0, 200, 0, 100) hitbox expander How to use it? hitbox expander Frame.Position = UDim2.new(0, 10, 1, -110) Frame.AnchorPoint = Vector2.new(0, 1) Frame.BackgroundColor3 = Color3.fromRGB(50, 50, 50) Frame.BorderSizePixel = 0 Frame.BackgroundTransparency = 0.2 local TextBox = Instance.new("TextBox", Frame) TextBox.Size = UDim2.new(1, -10, 0.4, -5) TextBox.Position = UDim2.new(0, 5, 0, 5) TextBox.BackgroundColor3 = Color3.new(1, 1, 1) hitbox expander How to dowload it? hitbox expander TextBox.TextColor3 = Color3.new(0, 0, 0) TextBox.Text = "Enter hitbox size" TextBox.ClearTextOnFocus = true local TeamButton = Instance.new("TextButton", Frame) TeamButton.Size = UDim2.new(1, -10, 0.4, -5) TeamButton.Position = UDim2.new(0, 5, 0.5, 5) TeamButton.BackgroundColor3 = Color3.fromRGB(80, 80, 80) TeamButton.TextColor3 = Color3.new(1, 1, 1) TeamButton.Text = "Toggle Team Check" hitbox expander How to use it? hitbox expander local TextLabel = Instance.new("TextLabel", Frame) TextLabel.Size = UDim2.new(1, -10, 0.2, -5) TextLabel.Position = UDim2.new(0, 5, 0.9, 5) TextLabel.BackgroundColor3 = Color3.new(1, 1, 1) TextLabel.TextColor3 = Color3.new(0, 0, 0) TextLabel.Text = "Hitbox Size: 1" TextLabel.TextScaled = true TextBox.FocusLost:Connect(function(enterPressed) hitbox expander PasteShr hitbox expander if enterPressed then local input = tonumber(TextBox.Text) if input then hitboxSize = input TextLabel.Text = "Hitbox Size: " .. hitboxSize resizeAllHitboxes() else TextLabel.Text = "Invalid number" end TextBox.Text = "" hitbox expander How to dowload it? hitbox expander end end) TeamButton.MouseButton1Click:Connect(function() teamCheck = not teamCheck TeamButton.Text = teamCheck and "Team Check: ON" or "Team Check: OFF" resizeAllHitboxes() end) end hitbox expander PasteShr hitbox expander createHitboxGui() LocalPlayer.CharacterAdded:Connect(function() wait(1) createHitboxGui() end) hitbox expander