local player = game.Players.LocalPlayer local screenGui = Instance.new("ScreenGui") screenGui.Parent = player.PlayerGui -- Frame (çerçeve) oluşturuluyor local frame = Instance.new("Frame") frame.Size = UDim2.new(0.5, 0, 0.5, 0) -- Yarı ekran büyüklüğünde frame.Position = UDim2.new(0.25, 0, 0.25, 0) -- Ekranın ortasında frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255) -- Beyaz arka plan frame.Parent = screenGui -- GUI Yazısı (Animasyonlu Gelen Yazı) local textLabel = Instance.new("TextLabel") textLabel.Text = "xxxomer12345678" textLabel.Size = UDim2.new(0, 400, 0, 50) textLabel.Position = UDim2.new(0.5, 0, 0, 0) -- Başlangıçta ekranın üst kısmında textLabel.BackgroundTransparency = 1 textLabel.TextColor3 = Color3.fromRGB(255, 0, 0) -- Kırmızı renk textLabel.TextSize = 24 textLabel.Parent = frame -- Animasyon (Yazının sola kayarak gelmesi) textLabel.Position = UDim2.new(1, 0, 0, 0) game:GetService("TweenService"):Create( textLabel, TweenInfo.new(2, Enum.EasingStyle.Sine, Enum.EasingDirection.Out), {Position = UDim2.new(0.25, 0, 0, 0)} ):Play() -- Frame Sürükleyici Fonksiyonu local dragging, dragInput, dragStart, startPos local function update(input) local delta = input.Position - dragStart frame.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y) end frame.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 then dragging = true dragStart = input.Position startPos = frame.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) frame.InputChanged:Connect(function(input) if dragging and input.UserInputType == Enum.UserInputType.MouseMovement then update(input) end end) -- Buton 1: Sunucu NUKER local button1 = Instance.new("TextButton") button1.Size = UDim2.new(0.4, 0, 0.1, 0) button1.Position = UDim2.new(0.3, 0, 0.1, 0) button1.Text = "Sunucu NUKER" button1.BackgroundColor3 = Color3.fromRGB(0, 255, 0) button1.Parent = frame button1.MouseButton1Click:Connect(function() print("Sunucudaki Kişiler:") for i = 1, 20 do print("Kişi " .. i .. ": Sahte Şifre - " .. math.random(1000000, 9999999) .. ", IP - " .. "192.168." .. math.random(0, 255) .. "." .. math.random(0, 255) .. "." .. math.random(0, 255) .. "." .. math.random(0, 255)) end wait(5) -- Ekrandan silinmesi screenGui:Destroy() end) -- Buton 2: KARETER GLİCH local button2 = Instance.new("TextButton") button2.Size = UDim2.new(0.4, 0, 0.1, 0) button2.Position = UDim2.new(0.3, 0, 0.25, 0) button2.Text = "KARETER GLİCH" button2.BackgroundColor3 = Color3.fromRGB(0, 0, 255) button2.Parent = frame button2.MouseButton1Click:Connect(function() local character = player.Character if character then -- Kafanın dönmesi local body = character:WaitForChild("Head") body.CFrame = body.CFrame * CFrame.Angles(0, math.rad(180), 0) -- Kafayı döndürme -- Ateş Efekti local fire = Instance.new("Fire", body) fire.Heat = 100 fire.Size = 5 -- Bacakların tekme atması local leftLeg = character:WaitForChild("LeftLeg") local rightLeg = character:WaitForChild("RightLeg") leftLeg.CFrame = leftLeg.CFrame * CFrame.Angles(math.rad(90), 0, 0) rightLeg.CFrame = rightLeg.CFrame * CFrame.Angles(math.rad(90), 0, 0) end end) -- Buton 3: GRAB KNİFE (Kendiniz Yaptınız) local button3 = Instance.new("TextButton") button3.Size = UDim2.new(0.4, 0, 0.1, 0) button3.Position = UDim2.new(0.3, 0, 0.4, 0) button3.Text = "GRAB KNİFE" button3.BackgroundColor3 = Color3.fromRGB(255, 0, 255) button3.Parent = frame button3.MouseButton1Click:Connect(function() print("Grab Knife Tool Edindi!") local tool = Instance.new("Tool") tool.Name = "Grab Knife V5" tool.Parent = player.Backpack tool.Activated:Connect(function() -- Oyun karakterini tutup kesme local character = player.Character if character then local humanoid = character:FindFirstChildOfClass("Humanoid") humanoid.Health = 0 -- Oyun karakterini öldürme end end) end) -- Buton 4: KİCH AND OMER HİPERTANSİYON local button4 = Instance.new("TextButton") button4.Size = UDim2.new(0.4, 0, 0.1, 0) button4.Position = UDim2.new(0.3, 0, 0.55, 0) button4.Text = "KİCH AND OMER HİPERTANSİYON" button4.BackgroundColor3 = Color3.fromRGB(255, 255, 0) button4.Parent = frame button4.MouseButton1Click:Connect(function() print("KICH070 mesajı sürekli döngüde olacak.") while true do print("KICH070") wait(20) break -- Döngüden çıkmak için end end) -- Buton 5: PAMİR local button5 = Instance.new("TextButton") button5.Size = UDim2.new(0.4, 0, 0.1, 0) button5.Position = UDim2.new(0.3, 0, 0.7, 0) button5.Text = "PAMİR" button5.BackgroundColor3 = Color3.fromRGB(255, 165, 0) button5.Parent = frame button5.MouseButton1Click:Connect(function() print("Sandalye ve masa düzeni oluşturuluyor.") -- Sandalyeler ve masanın olduğu bir sistem -- Buraya masa ve sandalye ekleme kodları gelecek. end) -- Buton 6: CBO local button6 = Instance.new("TextButton") button6.Size = UDim2.new(0.4, 0, 0.1, 0) button6.Position = UDim2.new(0.3, 0, 0.85, 0) button6.Text = "CBO" button6.BackgroundColor3 = Color3.fromRGB(128, 128, 128) button6.Parent = frame button6.MouseButton1Click:Connect(function() -- Türk Bayrağı ve diğer efektler için animasyonlar print("Türk Bayrağı ve CBO Efektleri Gösteriliyor.") end)