-- Ekrana GUI ekleyelim local screenGui = Instance.new("ScreenGui") screenGui.Name = "GAME INFO BY OMER MOD LOL 🇹🇷" screenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") -- Ana Çerçeve (Frame) Oluşturma local frame = Instance.new("Frame") frame.Size = UDim2.new(0.8, 0, 0.6, 0) -- Yüksekliği %60, genişliği %80 frame.Position = UDim2.new(0.1, 0, 0.2, 0) -- Ortada frame.BackgroundColor3 = Color3.fromRGB(50, 50, 50) frame.Visible = false -- Başlangıçta görünmez frame.Parent = screenGui -- Kaydırılabilir Çerçeve (ScrollingFrame) local scrollingFrame = Instance.new("ScrollingFrame") scrollingFrame.Size = UDim2.new(1, 0, 1, 0) scrollingFrame.Position = UDim2.new(0, 0, 0, 0) scrollingFrame.BackgroundTransparency = 1 scrollingFrame.ScrollBarThickness = 10 scrollingFrame.Parent = frame -- İçerik Çerçevesi (UIListLayout için) local contentFrame = Instance.new("Frame") contentFrame.Size = UDim2.new(1, 0, 1, 0) contentFrame.BackgroundTransparency = 1 contentFrame.Parent = scrollingFrame -- UIListLayout local listLayout = Instance.new("UIListLayout") listLayout.FillDirection = Enum.FillDirection.Vertical listLayout.Padding = UDim.new(0, 5) -- Butonlar arasındaki boşluk listLayout.Parent = contentFrame -- Fonksiyonları tanımlayın local function createButton(name, color, action) local button = Instance.new("TextButton") button.Size = UDim2.new(1, 0, 0, 40) -- Buton yüksekliği 40 piksel button.Text = name button.BackgroundColor3 = color button.TextColor3 = Color3.fromRGB(255, 255, 255) button.Font = Enum.Font.SourceSans -- Kalın yazı tipi button.Parent = contentFrame button.MouseButton1Click:Connect(action) end -- GUI'yi açmak için buton local toggleButton = Instance.new("TextButton") toggleButton.Size = UDim2.new(0.5, 0, 0, 50) -- Açma/Kapama buton yüksekliği toggleButton.Position = UDim2.new(0.25, 0, 0.1, 0) -- Ortada konumlandır toggleButton.Text = "GUI'yi Aç" toggleButton.BackgroundColor3 = Color3.fromRGB(100, 100, 255) toggleButton.TextColor3 = Color3.fromRGB(255, 255, 255) toggleButton.Font = Enum.Font.SourceSans toggleButton.Parent = screenGui -- Açma/Kapama fonksiyonu local function toggleGUI() frame.Visible = not frame.Visible toggleButton.Text = frame.Visible and "GUI'yi Kapat" or "GUI'yi Aç" -- Buton metnini değiştir end toggleButton.MouseButton1Click:Connect(toggleGUI) -- Butonları Oluşturma createButton("GAME GLİCH", Color3.fromRGB(255, 100, 100), function() game.Lighting:SetMinutesAfterMidnight(0) -- Gündüz end) createButton("GAME BOM", Color3.fromRGB(255, 100, 50), function() local explosion = Instance.new("Explosion") explosion.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position explosion.BlastRadius = 50 explosion.BlastPressure = 5000 explosion.Parent = game.Workspace end) createButton("LAMBO", Color3.fromRGB(100, 200, 100), function() local lambo = Instance.new("Tool") lambo.Name = "Lambo" lambo.Parent = game.Players.LocalPlayer.Backpack end) createButton("TURK", Color3.fromRGB(255, 150, 150), function() local player = game.Players.LocalPlayer local tool = Instance.new("Tool") tool.Name = "Türk Silahı" tool.Parent = player.Backpack player.Name = "TÜRK" end) createButton("Free Player List", Color3.fromRGB(150, 255, 150), function() local playerList = game.Players:GetPlayers() for _, player in ipairs(playerList) do print("Name: " .. player.Name) end end) createButton("PREMIUM", Color3.fromRGB(255, 200, 50), function() game.Players.LocalPlayer.Character.Humanoid.RigType = Enum.HumanoidRigType.R15 wait(10) game.Players.LocalPlayer:Kick("XXXOMER12345678 EZ WİN LOLL 🇹🇷") end) createButton("FREE JOKER FE", Color3.fromRGB(255, 0, 255), function() for _, player in ipairs(game.Players:GetPlayers()) do player.Character:Move(Vector3.new(0, 50, 0)) -- Yukarı doğru fırlatma end game.StarterGui:SetCore("ChatMakeSystemMessage", { Text = "JOKER FE BY OMER MOD MENU"; Color = Color3.fromRGB(255, 0, 0); }) end) createButton("Expo", Color3.fromRGB(100, 150, 255), function() local player = game.Players.LocalPlayer player.Character.Humanoid.MaxHealth = math.huge player.Character.Humanoid.Health = math.huge end) createButton("Fly GUI", Color3.fromRGB(0, 255, 150), function() local bodyVelocity = Instance.new("BodyVelocity") bodyVelocity.Velocity = Vector3.new(0, 50, 0) bodyVelocity.MaxForce = Vector3.new(0, 4000, 0) bodyVelocity.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart wait(5) bodyVelocity:Destroy() end) createButton("OMER MOD", Color3.fromRGB(200, 100, 255), function() for _, v in pairs(workspace:GetChildren()) do if v:IsA("Model") then v:BreakJoints() -- Düşürmek için v:SetPrimaryPartCFrame(CFrame.new(v.Position + Vector3.new(0, -10, 0))) -- Aşağı düşür end end -- Müzik çalma local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://2838571776" sound.Volume = 1 -- Ses seviyesi sound.Looped = true -- Döngü sound.Parent = game.Workspace sound:Play() end) createButton("FREE ADMIN", Color3.fromRGB(255, 100, 200), function() local adminMenu = Instance.new("Frame") adminMenu.Size = UDim2.new(0.4, 0, 0.4, 0) adminMenu.Position = UDim2.new(0.3, 0, 0.3, 0) adminMenu.BackgroundColor3 = Color3.fromRGB(100, 100, 100) adminMenu.Parent = screenGui -- Admin komutları createButton("Kick", Color3.fromRGB(200, 200, 200), function() game.Players.LocalPlayer:Kick("Admin tarafından atıldınız.") end).Parent = adminMenu createButton("Ban", Color3.fromRGB(200, 100, 100), function() print("Banlama kodu çalıştırıldı.") end).Parent = adminMenu end) createButton("FREE PLAYER SIT", Color3.fromRGB(100, 100, 255), function() for _, player in ipairs(game.Players:GetPlayers()) do local sitAnim = Instance.new("Animation") sitAnim.AnimationId = "rbxassetid://180426350" -- Oturma animasyonu player.Character.Humanoid:LoadAnimation(sitAnim):Play() end end) createButton("Şifreli Buton", Color3.fromRGB(255, 150, 50), function() local password = "10abone" if game.Players.LocalPlayer.Name == password then print("Şifre doğru!") else print("Şifre yanlış!") end end) -- 18. Buton: OMER MOD createButton("OMER MOD", Color3.fromRGB(200, 100, 255), function() for _, model in pairs(workspace:GetChildren()) do if model:IsA("Model") then model:BreakJoints() -- Düşürmek için model:SetPrimaryPartCFrame