local sg = Instance.new("ScreenGui") sg.Name = "OMER MODS GUI" sg.Parent = game.Players.LocalPlayer.PlayerGui local fr = Instance.new("Frame") fr.Size = UDim2.new(0.3, 0, 0.6, 0) fr.Position = UDim2.new(0.35, 0, 0.2, 0) fr.BackgroundColor3 = Color3.new(0, 0, 0) fr.BorderColor3 = Color3.new(1, 0, 0) fr.Parent = sg fr.Active = true fr.Draggable = true local function createButton(name, pos, callback) local btn = Instance.new("TextButton") btn.Size = UDim2.new(0.8, 0, 0.05, 0) btn.Position = UDim2.new(0.1, 0, pos, 0) btn.BackgroundColor3 = Color3.new(1, 1, 1) btn.TextColor3 = Color3.new(0, 0, 0) btn.Text = name btn.Parent = fr btn.MouseButton1Click:Connect(callback) end -- FUNK Butonu createButton("FUNK", 0.05, function() local sound = Instance.new("Sound", game.Workspace) sound.SoundId = "rbxassetid://106317184644394" sound.Volume = 99999 sound.PlaybackSpeed = 0.50 sound:Play() end) -- MESSAGE Butonu createButton("MESSAGE", 0.11, function() local message = Instance.new("Message") message.Parent = game.Workspace message.Text = "OMER MODS İS BACK\nXXXOMER12345678\nANTİ ROBLOX 🤑" wait(3) message:Destroy() end) -- FIRE ALL Butonu createButton("FIRE ALL", 0.17, function() for _, player in pairs(game.Players:GetPlayers()) do local fire = Instance.new("Fire", player.Character.HumanoidRootPart) fire.Color = Color3.new(1, 0, 0) fire.SecondaryColor = Color3.new(0, 1, 0) fire.Heat = 25 fire.Size = 15 local billboard = Instance.new("BillboardGui", player.Character.HumanoidRootPart) billboard.Size = UDim2.new(0, 200, 0, 50) billboard.StudsOffset = Vector3.new(0, 3, 0) local text = Instance.new("TextLabel", billboard) text.Text = "HACKED BY OMER" text.Size = UDim2.new(1, 0, 1, 0) text.TextColor3 = Color3.new(1, 0, 0) end end) -- FUNK 2 Butonu createButton("FUNK 2", 0.23, function() local sound = Instance.new("Sound", game.Workspace) sound.SoundId = "rbxassetid://139477537381956" sound.Volume = 99999 sound:Play() end) -- HINT SPAM Butonu (Loop yapısı) local hintSpamActive = false createButton("HINT SPAM", 0.29, function() hintSpamActive = not hintSpamActive while hintSpamActive do local hint = Instance.new("Hint") hint.Parent = game.Workspace hint.Text = "XXXOMER12345678 HACKED THE GAME 🙏https://discord.gg/ZmdHGEHW🙏" wait(0.1) hint:Destroy() end end) -- MAP SPIN Butonu local mapSpinActive = false createButton("MAP SPIN", 0.35, function() mapSpinActive = not mapSpinActive while mapSpinActive do for _, obj in pairs(workspace:GetDescendants()) do if obj:IsA("BasePart") then obj.Orientation = obj.Orientation + Vector3.new(0, 5, 0) end end wait(0.1) end end) -- SKYBOX Butonu (Loop yapısı) local skyboxActive = false createButton("SKYBOX", 0.41, function() skyboxActive = not skyboxActive while skyboxActive do 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" wait(0.1) end end) -- ALLAHU AKBAR TOOL Butonu createButton("ALLAHU AKBAR TOOL", 0.47, function() local tool = Instance.new("Tool") tool.Name = "ALLAHU AKBAR" tool.Parent = game.Players.LocalPlayer.Backpack tool.Activated:Connect(function() local sound = Instance.new("Sound", game.Workspace) sound.SoundId = "rbxassetid://247893371" sound.Volume = 99999 sound.PlaybackSpeed = 0.60 sound:Play() wait(3) local explosion = Instance.new("Explosion", game.Workspace) explosion.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position end) end) -- OYUN HACK Butonu createButton("OYUN HACK", 0.53, function() for _, obj in pairs(workspace:GetDescendants()) do if obj:IsA("BasePart") then obj.Color = Color3.new(math.random(), math.random(), math.random()) obj.Anchored = false obj.Size = obj.Size * Vector3.new(math.random(), math.random(), math.random()) end end end) -- RASTGELE PATLAMA Butonu createButton("RASTGELE PATLAMA", 0.59, function() for i = 1, 100 do local explosion = Instance.new("Explosion", game.Workspace) explosion.Position = Vector3.new(math.random(-100, 100), math.random(10, 100), math.random(-100, 100)) wait(0.1) end end) -- PLAYER GLITCH Butonu createButton("PLAYER GLITCH", 0.65, function() for _, player in pairs(game.Players:GetPlayers()) do local fire = Instance.new("Fire", player.Character.HumanoidRootPart) fire.Color = Color3.new(1, 0, 0) fire.Heat = 25 fire.Size = 15 player.Character.HumanoidRootPart.CFrame = player.Character.HumanoidRootPart.CFrame * CFrame.Angles(0, 0.5, 0) end end) -- KAPAT Butonu createButton("KAPAT", 0.71, function() sg:Destroy() end)