-- Hitbox Expander Script for Town because chahc and lieear wanted a new one because they thought it was AI so here you go local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local function expandHitbox(target) if target and target.Character and target.Character:FindFirstChild("HumanoidRootPart") then local hrp = target.Character.HumanoidRootPart hrp.Size = Vector3.new(10, 10, 10) hrp.Transparency = 0.7 hrp.Material = Enum.Material.Neon hrp.BrickColor = BrickColor.new("Bright red") hrp.CanCollide = false end end for _, player in ipairs(Players:GetPlayers()) do if player ~= LocalPlayer then expandHitbox(player) end end Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function() wait(1) expandHitbox(player) end) end)