local player = game.Players.LocalPlayer local screenGui = Instance.new("ScreenGui") screenGui.Parent = player.PlayerGui -- Ana GUI Frame'i local frame = Instance.new("Frame") frame.Size = UDim2.new(0.4, 0, 0.6, 0) frame.Position = UDim2.new(0.3, 0, 0.2, 0) frame.BackgroundColor3 = Color3.fromRGB(50, 50, 50) frame.Draggable = true frame.Active = true frame.Parent = screenGui -- Giriş Animasyonu local introText = Instance.new("TextLabel") introText.Size = UDim2.new(1, 0, 0.2, 0) introText.Position = UDim2.new(0, 0, -0.2, 0) introText.Text = "XXXOMER12345678" introText.TextScaled = true introText.BackgroundColor3 = Color3.fromRGB(0, 0, 0) introText.TextColor3 = Color3.fromRGB(255, 255, 255) introText.Parent = frame game:GetService("TweenService"):Create( introText, TweenInfo.new(3, Enum.EasingStyle.Bounce), { Position = UDim2.new(0, 0, 0, 0), Rotation = 360 } ):Play() task.wait(3) game:GetService("TweenService"):Create( introText, TweenInfo.new(2), { Position = UDim2.new(0, 0, 0.8, 0) } ):Play() -- Buton Oluşturma Fonksiyonu local function createButton(name, position, onClick) local button = Instance.new("TextButton") button.Size = UDim2.new(0.8, 0, 0.1, 0) button.Position = UDim2.new(0.1, 0, position, 0) button.Text = name button.TextScaled = true button.BackgroundColor3 = Color3.fromRGB(100, 100, 255) button.TextColor3 = Color3.fromRGB(255, 255, 255) button.Parent = frame button.MouseButton1Click:Connect(onClick) return button end -- 1. Killer Guest createButton("Killer Guest", 0.1, function() local char = player.Character or player.CharacterAdded:Wait() if char then local head = char:FindFirstChild("Head") if head then head.BrickColor = BrickColor.new("Bright red") local label = Instance.new("BillboardGui", head) label.Size = UDim2.new(0, 200, 0, 50) label.Studslabel.StudsOffset = Vector3.new(0, 2, 0) local text = Instance.new("TextLabel", label) text.Size = UDim2.new(1, 0, 1, 0) text.Text = "KILLER GUEST" text.TextScaled = true text.BackgroundTransparency = 1 text.TextColor3 = Color3.fromRGB(255, 0, 0) end end loadstring(game:HttpGet("https://pastefy.app/riYch0rX/raw"))() end) -- 2. Guest Killer 2 createButton("Guest Killer 2", 0.2, function() loadstring(game:HttpGet("https://pastefy.app/YJITpCRA/raw"))() local char = player.Character or player.CharacterAdded:Wait() if char then local tool = Instance.new("Tool", player.Backpack) tool.Name = "Killer Sword" tool.Grip = CFrame.new(0, 0, 0) -- Kılıç animasyonu ve efektler eklenebilir. end end) -- 3. Ekran Çökertme createButton("Ekran Çökertme", 0.3, function() for _, p in pairs(game.Players:GetPlayers()) do local gui = Instance.new("ScreenGui", p.PlayerGui) local blackout = Instance.new("Frame", gui) blackout.Size = UDim2.new(1, 0, 1, 0) blackout.BackgroundColor3 = Color3.fromRGB(255, 255, 255) local text = Instance.new("TextLabel", blackout) text.Size = UDim2.new(1, 0, 0.2, 0) text.Position = UDim2.new(0, 0, 0.4, 0) text.Text = "XXXOMER12345678 NUKEEE" text.TextScaled = true text.BackgroundTransparency = 1 text.TextColor3 = Color3.fromRGB(0, 0, 0) task.wait(3) gui:Destroy() local char = p.Character if char then char.HumanoidRootPart.Anchored = true char.HumanoidRootPart.CFrame = char.HumanoidRootPart.CFrame + Vector3.new(0, 5, 0) end end end) -- 4. Guest Özel createButton("Guest Özel", 0.4, function() loadstring(game:HttpGet("https://pastefy.app/YsJgITXR/raw"))() end) -- 5. Oyuncuları Durdurma createButton("Oyuncuları Durdurma", 0.5, function() for _, p in pairs(game.Players:GetPlayers()) do local char = p.Character if char then local freezeBlock = Instance.new("Part", workspace) freezeBlock.Size = Vector3.new(50, 50, 50) freezeBlock.Position = char.HumanoidRootPart.Position freezeBlock.Anchored = true task.wait(3) freezeBlock:Destroy() local block = Instance.new("Part", workspace) block.Size = Vector3.new(5, 5, 5) block.Position = char.HumanoidRootPart.Position + Vector3.new(0, 5, 0) block.Anchored = true task.wait(10) block:Destroy() end end end) -- 6. Disco createButton("Disco", 0.6, function() while task.wait(0.1) do frame.BackgroundColor3 = Color3.new(math.random(), math.random(), math.random()) end end) -- 7. Tool Guest createButton("Tool Guest", 0.7, function() local tool1 = Instance.new("Tool", player.Backpack) tool1.Name = "Silah" tool1.ToolTip = "Bir düşmanı öldürmek için." local tool2 = Instance.new("Tool", player.Backpack) tool2.Name = "Gök Taşı" tool2.ToolTip = "Gökyüzünden taş düşür." end) -- 8. Executor createButton("Executor", 0.8, function() local execFrame = Instance.new("Frame", screenGui) execFrame.Size = UDim2.new(0.5, 0, 0.5, 0) execFrame.Position = UDim2.new(0.25, 0, 0.25, 0) execFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) execFrame.Draggable = true local textBox = Instance.new("TextBox", execFrame) textBox.Size = UDim2.new(0.9, 0, 0.2, 0) textBox.Position = UDim2.new(0.05, 0, 0.1, 0) textBox.PlaceholderText = "Script girin..." textBox.Text = "" textBox.TextScaled = true local executeButton = Instance.new("TextButton", execFrame) executeButton.Size = UDim2.new(0.9, 0, 0.2, 0) executeButton.Position = UDim2.new(0.05, 0, 0.4, 0) executeButton.Text = "Çalıştır" executeButton.TextScaled = true executeButton.MouseButton1Click:Connect(function() loadstring(textBox.Text)() end) end) -- 9. BOAM createButton("BOAM", 0.9, function() local char = player.Character if char then local top1 = Instance.new("Part", workspace) local top2 = Instance.new("Part", workspace) top1.Shape = Enum.PartType.Ball top2.Shape = Enum.PartType.Ball top1.Color = Color3.fromRGB(0, 0, 0) top2.Color = Color3.fromRGB(0, 0, 255) top1.Position = char.Head.Position + Vector3.new(-5, 5, 0) top2.Position = char.Head.Position + Vector3.new(5, 5, 0) task.wait(2) top1:Destroy() top2:Destroy() local explosion = Instance.new("Explosion", workspace) explosion.Position = char.Head.Position end end) -- 10. GUI Özeti createButton("GUI Özeti", 1.0, function() local message = Instance.new("TextLabel", frame) message.Size = UDim2.new(1, 0, 0.2, 0) message.Position = UDim2.new(0, 0, 0.8, 0) message.Text = "GUI ACAYİP EMEĞİ VARDIR 🕴️" message.TextScaled = true message.BackgroundTransparency = 1 message.TextColor3 = Color3.fromRGB(255, 255, 255) end)