local player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui")) gui.Name = "OMER_MODS_V3" gui.ResetOnSpawn = false local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 400, 0, 400) frame.Position = UDim2.new(0.5, -200, 0.5, -200) frame.BackgroundColor3 = Color3.fromRGB(25, 25, 25) frame.BorderSizePixel = 0 frame.Active = true frame.Draggable = true frame.Parent = gui local title = Instance.new("TextLabel") title.Text = "OMER MODS 🇹🇷 V3 [ 🎩]" title.Font = Enum.Font.GothamBlack title.TextSize = 22 title.TextColor3 = Color3.new(1, 1, 1) title.Size = UDim2.new(1, 0, 0, 40) title.BackgroundTransparency = 1 title.Parent = frame local buttons = { {name = "MESSAGE 😡", func = function() local messages = { "HAXXED BY OMER MODS 🇹🇷 🤫🤫🤫🤫🤫🤫🤫", "MUAHAHAHHA Losers", "OMER MODS IS AN INVINCIBLE POWER, JOIN AND NAME IT MODS 🎩" } for _, msg in ipairs(messages) do local m = Instance.new("Message", workspace) m.Text = msg wait(2) m:Destroy() end end}, {name = "MUSİC", func = function() local sound = Instance.new("Sound", workspace) sound.SoundId = "rbxassetid://2255741253" sound.Volume = 5 sound.Looped = false sound:Play() end}, {name = "NUKER [©]", func = function() while true do task.wait(0.1) local m = Instance.new("Message", workspace) m.Text = "OMER MODS JOIN TODAY" game.Lighting.Brightness = 0 m:Destroy() for _, d in pairs(workspace:GetDescendants()) do if d:IsA("BasePart") then d.Anchored = false d.RotVelocity = Vector3.new(0, 100, 0) d.BrickColor = BrickColor.Random() d.Material = Enum.Material.Neon end end local sound = Instance.new("Sound", workspace) sound.SoundId = "rbxassetid://94446515790251" sound.Volume = 100000 sound.Looped = true sound:Play() for _, plr in pairs(game.Players:GetPlayers()) do local fire = Instance.new("Fire", plr.Character:FindFirstChild("HumanoidRootPart")) fire.Size = 10 fire.Heat = 50 local billboard = Instance.new("BillboardGui", plr.Character:FindFirstChild("Head")) billboard.Size = UDim2.new(0, 200, 0, 50) billboard.AlwaysOnTop = true local label = Instance.new("TextLabel", billboard) label.Size = UDim2.new(1, 0, 1, 0) label.Text = "OMER MODS" label.TextColor3 = Color3.fromRGB(255, 0, 0) label.BackgroundTransparency = 1 end local explosion = Instance.new("Explosion", workspace) explosion.Position = Vector3.new(math.random(-100, 100), 10, math.random(-100, 100)) end end}, {name = "SPAM BLOCK", func = function() for i = 1, 100 do local part = Instance.new("Part", workspace) part.Size = Vector3.new(1, 1, 1) part.Position = Vector3.new(math.random(-100, 100), 50, math.random(-100, 100)) part.Anchored = false part.BrickColor = BrickColor.Random() end end}, {name = "HİNT LOOP (💁🇩🇪]", func = function() local texts = { "OMER MODS JOIN TODAY", "OMER MODS 🇹🇷", "🇹🇷" .. string.rep("🇹🇷", 15), "Ez GAME", "FİX GAME BY MODS 🇹🇷", "TRALALAL 😂⚡ İM M O D S" } while true do for _, txt in ipairs(texts) do local h = Instance.new("Hint", workspace) h.Text = txt wait(0.1) h:Destroy() end end end}, {name = "GÖZ BOZMA [ 💎]", func = function() while true do task.wait(0.05) for _, p in pairs(workspace:GetDescendants()) do if p:IsA("BasePart") then p.BrickColor = BrickColor.Random() p.Material = Enum.Material.Neon end end game.Lighting.Brightness = 10 end end} } for i, btnData in ipairs(buttons) do local btn = Instance.new("TextButton") btn.Size = UDim2.new(0.95, 0, 0, 40) btn.Position = UDim2.new(0.025, 0, 0, 40 + (i - 1) * 45) btn.Text = btnData.name btn.Font = Enum.Font.GothamSemibold btn.TextSize = 18 btn.BackgroundColor3 = Color3.fromRGB(40, 40, 40) btn.TextColor3 = Color3.new(1, 1, 1) btn.Parent = frame btn.MouseButton1Click:Connect(btnData.func) end