local player = game.Players.LocalPlayer local screenGui = Instance.new("ScreenGui") screenGui.Parent = player:WaitForChild("PlayerGui") screenGui.Name = "CustomGui" -- Ana GUI local mainFrame = Instance.new("Frame") mainFrame.Size = UDim2.new(0.8, 0, 0.8, 0) mainFrame.Position = UDim2.new(0.1, 0, 0.1, 0) mainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) mainFrame.BorderSizePixel = 2 mainFrame.BorderColor3 = Color3.new(1, 1, 1) mainFrame.Visible = false -- Başlangıçta kapalı mainFrame.Parent = screenGui -- GUI'yi Aç/Kapatma Butonu local toggleButton = Instance.new("TextButton") toggleButton.Text = "Menü Aç/Kapat" toggleButton.Size = UDim2.new(0.4, 0, 0.1, 0) toggleButton.Position = UDim2.new(0.3, 0, 0.9, 0) toggleButton.BackgroundColor3 = Color3.fromRGB(50, 50, 50) toggleButton.TextColor3 = Color3.new(1, 1, 1) toggleButton.Font = Enum.Font.FredokaOne toggleButton.TextSize = 18 toggleButton.Parent = screenGui toggleButton.MouseButton1Click:Connect(function() mainFrame.Visible = not mainFrame.Visible end) -- Başlık local title = Instance.new("TextLabel") title.Text = "👾OMERMODMENU👾" title.Font = Enum.Font.FredokaOne title.TextSize = 24 title.TextColor3 = Color3.new(1, 1, 1) title.BackgroundTransparency = 1 title.Size = UDim2.new(1, 0, 0.1, 0) title.Parent = mainFrame -- Sürüklenebilirlik Fonksiyonu local function makeDraggable(gui) local dragging, dragStart, startPos gui.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 then dragging = true dragStart = input.Position startPos = gui.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) gui.InputChanged:Connect(function(input) if dragging and input.UserInputType == Enum.UserInputType.MouseMovement then local delta = input.Position - dragStart gui.Position = UDim2.new( startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y ) end end) end makeDraggable(mainFrame) -- Buton Şablonu local function createButton(name, position, func) local button = Instance.new("TextButton") button.Text = name button.Size = UDim2.new(0.8, 0, 0.1, 0) button.Position = UDim2.new(0.1, 0, position, 0) button.BackgroundColor3 = Color3.fromRGB(50, 50, 50) button.TextColor3 = Color3.new(1, 1, 1) button.Font = Enum.Font.FredokaOne button.TextSize = 18 button.Parent = mainFrame button.MouseButton1Click:Connect(func) end -- 1. SUNUCU BATIRMA createButton("SUNUCU BATIRMA", 0.1, function() for _, obj in pairs(workspace:GetChildren()) do if not obj:IsA("Terrain") and not obj:IsA("Model") then obj:Destroy() end end game.Lighting.ClockTime = 18 for i = 1, 20 do local block = Instance.new("Part") block.Size = Vector3.new(3, 3, 3) block.Position = Vector3.new(math.random(-50, 50), 50, math.random(-50, 50)) block.Anchored = false block.BrickColor = BrickColor.Random() block.Parent = workspace wait(0.5) end wait(20) for _, obj in pairs(workspace:GetChildren()) do if obj:IsA("Part") and not obj.Anchored then obj:Destroy() end end end) -- 2. GUEST HİPER ŞARJLI createButton("GUEST HİPER ŞARJLI", 0.25, function() local character = player.Character for _, part in pairs(character:GetChildren()) do if part:IsA("BasePart") then part.BrickColor = BrickColor.new("Bright violet") end end local ultiButton = Instance.new("TextButton") ultiButton.Text = "ULTİ" ultiButton.Size = UDim2.new(0.8, 0, 0.1, 0) ultiButton.Position = UDim2.new(0.1, 0, 0.8, 0) ultiButton.BackgroundColor3 = Color3.fromRGB(80, 0, 80) ultiButton.TextColor3 = Color3.new(1, 1, 1) ultiButton.Font = Enum.Font.FredokaOne ultiButton.TextSize = 18 ultiButton.Parent = mainFrame ultiButton.MouseButton1Click:Connect(function() local wall = Instance.new("Part") wall.Size = Vector3.new(20, 10, 1) wall.Position = Vector3.new(0, 5, 0) wall.Anchored = true wall.BrickColor = BrickColor.new("Dark stone grey") wall.Parent = workspace for _, plr in pairs(game.Players:GetPlayers()) do if plr.Character then local char = plr.Character char:MoveTo(wall.Position + Vector3.new(0, 0, 5)) for _, part in pairs(char:GetChildren()) do if part:IsA("BasePart") then part.Anchored = true end end local head = char:FindFirstChild("Head") if head then local fire = Instance.new("Fire") fire.Parent = head end end end wait(3) for _, plr in pairs(game.Players:GetPlayers()) do if plr.Character and plr.Character:FindFirstChild("Head") then plr.Character.Head:Destroy() end end end) end) -- 7. ALLAHU AKBAR createButton("ALLAHU AKBAR", 0.35, function() local character = player.Character or player.CharacterAdded:Wait() -- Bayrak Ekleniyor local flag = Instance.new("Part") flag.Size = Vector3.new(2, 1, 0.1) flag.BrickColor = BrickColor.new("Bright red") flag.Anchored = false flag.Parent = character flag.Position = character.Head.Position + Vector3.new(0, 2, 0) -- 4 Saniye Sonra Büyük Patlama wait(4) local explosion = Instance.new("Explosion") explosion.Position = character.Head.Position explosion.BlastRadius = 50 explosion.BlastPressure = 200000 explosion.Parent = workspace -- Karakterin Hızını Artır character.Humanoid.WalkSpeed = 50 end) -- 8. GUI Yapan Kişi createButton("GUİ YAPAN KİŞİ", 0.5, function() local label = Instance.new("TextLabel") label.Text = "👾EMEK VAR: OMERMODMENU👾" label.Font = Enum.Font.FredokaOne label.TextSize = 24 label.TextColor3 = Color3.new(1, 1, 1) label.BackgroundTransparency = 1 label.Size = UDim2.new(1, 0, 0.2, 0) label.Position = UDim2.new(0, 0, 0.4, 0) label.Parent = screenGui wait(3) label:Destroy() end)createButton("EĞİTİM YAP", 0.65, function() -- Menü Oluşturma local trainingMenu = Instance.new("Frame") trainingMenu.Size = UDim2.new(0.5, 0, 0.4, 0) trainingMenu.Position = UDim2.new(0.25, 0, 0.3, 0) trainingMenu.BackgroundColor3 = Color3.fromRGB(40, 40, 40) trainingMenu.Visible = true trainingMenu.Parent = mainFrame makeDraggable(trainingMenu) local closeTrainingMenuButton = Instance.new("TextButton") closeTrainingMenuButton.Text = "Menü Kapat" closeTrainingMenuButton.Size = UDim2.new(0.3, 0, 0.1, 0) closeTrainingMenuButton.Position = UDim2.new(0.35, 0, 0.85, 0) closeTrainingMenuButton.BackgroundColor3 = Color3.fromRGB(50, 50, 50) closeTrainingMenuButton.TextColor3 = Color3.new(1, 1, 1) closeTrainingMenuButton.Font = Enum.Font.FredokaOne closeTrainingMenuButton.TextSize = 18 closeTrainingMenuButton.Parent = trainingMenu closeTrainingMenuButton.MouseButton1Click:Connect(function() trainingMenu.Visible = false end) -- Eğitim Yaptır Butonu local trainButton = Instance.new("TextButton") trainButton.Text = "EĞİTİM YAPTIR" trainButton.Size = UDim2.new(0.8, 0, 0.2, 0) trainButton.Position = UDim2.new(0.1, 0, 0.3, 0) trainButton.BackgroundColor3 = Color3.fromRGB(60, 60, 60) trainButton.TextColor3 = Color3.new(1, 1, 1) trainButton.Font = Enum.Font.FredokaOne trainButton.TextSize = 18 trainButton.Parent = trainingMenu trainButton.MouseButton1Click:Connect(function() for _, plr in pairs(game.Players:GetPlayers()) do if plr.Character then local char = plr.Character -- STS Pozisyonu (Düz Sıra) char:MoveTo(Vector3.new(0, 0, 0) + Vector3.new(5 * plr.UserId % 10, 0, 5 * math.floor(plr.UserId / 10))) -- Animasyon (Jumping Jack) for i = 1, 5 do if char:FindFirstChild("Humanoid") then char.Humanoid.Jump = true wait(0.5) end end end end end) end)createButton("DİSKO", 0.75, function() for i = 1, 20 do local discoLight = Instance.new("Part") discoLight.Size = Vector3.new(10, 0.5, 10) discoLight.Position = Vector3.new(0, 20 + i, 0) discoLight.Anchored = true discoLight.BrickColor = BrickColor.Random() discoLight.Parent = workspace wait(0.3) end wait(5) for _, part in pairs(workspace:GetChildren()) do if part:IsA("Part") and part.Position.Y > 20 then part:Destroy() end end end)createButton("MÜZİK", 0.85, function() local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://157636218" sound.Volume = 3 sound.Pitch = 0.5 sound.Looped = true sound.Parent = workspace sound:Play() end)