-- OMER HOOP HITBOX SYSTEM - ALL IN ONE local player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui")) gui.Name = "OmerHitboxGui" -- Ana Panel local frame = Instance.new("Frame", gui) frame.Size = UDim2.new(0, 200, 0, 180) frame.Position = UDim2.new(0.5, -100, 0.5, -90) frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40) frame.Active = true frame.Draggable = true -- Sürükleme aktif -- Başlık local title = Instance.new("TextLabel", frame) title.Size = UDim2.new(1, 0, 0, 30) title.Text = "Omer Hoop Hitbox" title.TextColor3 = Color3.new(1, 1, 1) title.BackgroundColor3 = Color3.fromRGB(60, 60, 60) -- Kapatma (Çarpı) local closeBtn = Instance.new("TextButton", frame) closeBtn.Size = UDim2.new(0, 30, 0, 30) closeBtn.Position = UDim2.new(0.85, 0, 0, 0) closeBtn.Text = "X" closeBtn.BackgroundColor3 = Color3.fromRGB(200, 0, 0) closeBtn.TextColor3 = Color3.new(1, 1, 1) -- Küçültülmüş Buton (Menü kapalıyken) local miniBtn = Instance.new("TextButton", gui) miniBtn.Size = UDim2.new(0, 150, 0, 40) miniBtn.Position = UDim2.new(0.8, 0, 0.1, 0) miniBtn.Text = "OMER HOOP HITBOX" miniBtn.BackgroundColor3 = Color3.fromRGB(40, 40, 40) miniBtn.TextColor3 = Color3.new(1, 1, 1) miniBtn.Visible = false miniBtn.Draggable = true -- Küçülünce de sürüklenebilir -- Toggle (Aç/Kapa) local toggleBtn = Instance.new("TextButton", frame) toggleBtn.Size = UDim2.new(0.8, 0, 0, 30) toggleBtn.Position = UDim2.new(0.1, 0, 0.3, 0) toggleBtn.Text = "Hitbox: OFF" toggleBtn.BackgroundColor3 = Color3.fromRGB(100, 100, 100) -- Boyut Textbox local sizeInput = Instance.new("TextBox", frame) sizeInput.Size = UDim2.new(0.8, 0, 0, 30) sizeInput.Position = UDim2.new(0.1, 0, 0.6, 0) sizeInput.PlaceholderText = "Enter size (e.g. 5)" sizeInput.Text = "2" -- Varsayılan -- Buton Fonksiyonları closeBtn.MouseButton1Click:Connect(function() frame.Visible = false; miniBtn.Visible = true end) miniBtn.MouseButton1Click:Connect(function() frame.Visible = true; miniBtn.Visible = false end) local hitboxEnabled = false toggleBtn.MouseButton1Click:Connect(function() hitboxEnabled = not hitboxEnabled toggleBtn.Text = hitboxEnabled and "Hitbox: ON" or "Hitbox: OFF" end) -- Hitbox Motoru game:GetService("RunService").RenderStepped:Connect(function() if hitboxEnabled then local size = tonumber(sizeInput.Text) or 2 for _, p in pairs(game.Players:GetPlayers()) do if p ~= player and p.Character and p.Character:FindFirstChild("HumanoidRootPart") then local hrp = p.Character.HumanoidRootPart hrp.Size = Vector3.new(size, size, size) hrp.Transparency = 0.5 hrp.CanCollide = false end end end end)