local gui = Instance.new("ScreenGui") gui.Name = "OMER MODS" gui.Parent = game.CoreGui local frame = Instance.new("Frame") frame.Size = UDim2.new(0.5, 0, 0.7, 0) frame.Position = UDim2.new(0.25, 0, 0.15, 0) frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) frame.BorderSizePixel = 2 frame.Active = true frame.Draggable = true frame.Parent = gui -------------------------------- -- BUTON OLUŞTURMA FONKSİYONU -------------------------------- local function createButton(name, pos, color, parent, callback) local button = Instance.new("TextButton") button.Size = UDim2.new(0.3, 0, 0.1, 0) button.Position = pos button.BackgroundColor3 = color button.Text = name button.TextColor3 = Color3.fromRGB(255, 255, 255) button.Parent = parent button.MouseButton1Down:Connect(callback) return button end -------------------------------- -- FUNK BUTONU -------------------------------- createButton("FUNK", UDim2.new(0.05, 0, 0.05, 0), Color3.fromRGB(0, 255, 0), frame, function() local sound = Instance.new("Sound", workspace) sound.SoundId = "rbxassetid://106317184644394" sound.Volume = 99999 sound.PlaybackSpeed = 0.50 sound.Looped = true sound:Play() end) -------------------------------- -- MESSAGE BUTONU -------------------------------- createButton("MESSAGE", UDim2.new(0.35, 0, 0.05, 0), Color3.fromRGB(255, 255, 0), frame, function() local message = Instance.new("Message") message.Parent = workspace message.Text = "OMER MODS İS BACK\nXXXOMER12345678\nANTI #### ROBLOX 🤑" wait(3) message:Destroy() end) -------------------------------- -- FIRE ALL BUTONU -------------------------------- createButton("FIRE ALL", UDim2.new(0.65, 0, 0.05, 0), Color3.fromRGB(255, 0, 0), frame, function() for _, player in pairs(game.Players:GetPlayers()) do if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then local fire = Instance.new("Fire") fire.Parent = player.Character.HumanoidRootPart fire.Color = Color3.fromRGB(math.random(255), math.random(255), math.random(255)) fire.SecondaryColor = Color3.fromRGB(math.random(255), math.random(255), math.random(255)) fire.Size = 10 local billboard = Instance.new("BillboardGui", player.Character.Head) billboard.Size = UDim2.new(5, 0, 2, 0) billboard.AlwaysOnTop = true local label = Instance.new("TextLabel", billboard) label.Size = UDim2.new(1, 0, 1, 0) label.Text = "HACKED BY OMER" label.TextColor3 = Color3.fromRGB(255, 0, 0) label.BackgroundTransparency = 1 end end end) -------------------------------- -- FUNK 2 BUTONU -------------------------------- createButton("FUNK 2", UDim2.new(0.05, 0, 0.2, 0), Color3.fromRGB(0, 255, 255), frame, function() local sound = Instance.new("Sound", workspace) sound.SoundId = "rbxassetid://139477537381956" sound.Volume = 99999 sound.Looped = true sound:Play() end) -------------------------------- -- HİNT SPAM BUTONU -------------------------------- createButton("HİNT SPAM", UDim2.new(0.35, 0, 0.2, 0), Color3.fromRGB(255, 0, 255), frame, function() task.spawn(function() local messages = { "XXXOMER12345678 HACKED THE GAME", "LOL SERVER", "MUHAHAHAHAHAHAH", "EZ THE GAME", "JOIN https://discord.gg/ZmdHGEHW", "XXXOMER12345678 JOIN TODAY ⚠️", "EZ THE GAME BY OMER MODS 🇹🇷" } while true do for _, msg in pairs(messages) do local hint = Instance.new("Hint") hint.Parent = workspace hint.Text = msg wait(0.1) hint:Destroy() end end end) end) -------------------------------- -- MAP SPIN BUTONU -------------------------------- createButton("MAP SPIN", UDim2.new(0.65, 0, 0.2, 0), Color3.fromRGB(255, 165, 0), frame, function() task.spawn(function() while true do for _, v in pairs(workspace:GetChildren()) do if v:IsA("Model") or v:IsA("Part") then v.Orientation = v.Orientation + Vector3.new(0, 5, 0) end end wait(0.1) end end) end) -------------------------------- -- SKYBOX BUTONU -------------------------------- createButton("SKYBOX", UDim2.new(0.05, 0, 0.35, 0), Color3.fromRGB(255, 255, 255), frame, function() local sky = Instance.new("Sky", game.Lighting) sky.SkyboxBk = "rbxassetid://112291638253013" sky.SkyboxDn = "rbxassetid://112291638253013" sky.SkyboxFt = "rbxassetid://112291638253013" sky.SkyboxLf = "rbxassetid://112291638253013" sky.SkyboxRt = "rbxassetid://112291638253013" sky.SkyboxUp = "rbxassetid://112291638253013" end) -------------------------------- -- ALLAHU AKBAR TOOL BUTONU -------------------------------- createButton("ALLAHU AKBAR TOOL", UDim2.new(0.35, 0, 0.35, 0), Color3.fromRGB(255, 0, 0), frame, function() local tool = Instance.new("Tool") tool.Name = "ALLAHU AKBAR" tool.Parent = game.Players.LocalPlayer.Backpack tool.Activated:Connect(function() local anim = Instance.new("Animation") anim.AnimationId = "rbxassetid://282574440" local humanoid = game.Players.LocalPlayer.Character:FindFirstChild("Humanoid") if humanoid then local loadedAnim = humanoid:LoadAnimation(anim) loadedAnim:Play() end wait(3) local explosion = Instance.new("Explosion", workspace) explosion.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position explosion.BlastRadius = 10 explosion.BlastPressure = 50000 local sound = Instance.new("Sound", workspace) sound.SoundId = "rbxassetid://247893371" sound.Volume = 99999 sound.PlaybackSpeed = 0.60 sound:Play() end) end) -------------------------------- -- KAPATMA BUTONU -------------------------------- createButton("KAPAT", UDim2.new(0.9, 0, 0, 0), Color3.fromRGB(255, 0, 0), frame, function() gui:Destroy() end)