-- LocalScript içinde kullanılacak local player = game.Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") local character = player.Character or player.CharacterAdded:Wait() local replicatedStorage = game:GetService("ReplicatedStorage") local tweenService = game:GetService("TweenService") -- GUI oluşturuluyor local gui = Instance.new("ScreenGui") gui.Name = "Localqw6MegaGui" gui.Parent = playerGui -- GUI Frame local frame = Instance.new("Frame") frame.Size = UDim2.new(0.4, 0, 0.5, 0) frame.Position = UDim2.new(0.3, 0, 0.25, 0) frame.BackgroundColor3 = Color3.fromRGB(50, 50, 50) frame.BackgroundTransparency = 0.2 frame.Active = true frame.Draggable = true -- Sürüklenebilirlik frame.Parent = gui -- Başlık local title = Instance.new("TextLabel") title.Text = "Localqw6 Mega GUI" title.Size = UDim2.new(1, 0, 0.1, 0) title.BackgroundColor3 = Color3.fromRGB(0, 0, 0) title.TextColor3 = Color3.fromRGB(255, 255, 255) title.Font = Enum.Font.FredokaOne title.TextScaled = true title.Parent = frame -- Butonlar oluşturuluyor local buttonNames = {"Troll V3", "Şekil Değiştirme GUI", "Skybox", "Kareter H+ck", "Rakotsni", "Nuker Server", "Equipall"} local buttons = {} for i, name in ipairs(buttonNames) do local button = Instance.new("TextButton") button.Size = UDim2.new(0.8, 0, 0.1, 0) button.Position = UDim2.new(0.1, 0, 0.15 + (i - 1) * 0.15, 0) button.Text = name button.BackgroundColor3 = Color3.fromRGB(0, 255, 0) button.Font = Enum.Font.SourceSansBold button.TextScaled = true button.Parent = frame buttons[name] = button end -- 1. Troll V3 işlevi buttons["Troll V3"].MouseButton1Click:Connect(function() for _, target in ipairs(game.Players:GetPlayers()) do if target ~= player then character.HumanoidRootPart.CFrame = target.Character.HumanoidRootPart.CFrame + Vector3.new(0, 5, 0) replicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Eşek!", "All") wait(3) replicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("İnek!", "All") end end end) -- 2. Şekil Değiştirme GUI işlevi buttons["Şekil Değiştirme GUI"].MouseButton1Click:Connect(function() frame.BackgroundColor3 = Color3.fromRGB(math.random(0,255), math.random(0,255), math.random(0,255)) end) -- 3. Skybox işlevi buttons["Skybox"].MouseButton1Click:Connect(function() game.Lighting.Sky.SkyboxId = "rbxassetid://84978403234425" end) -- 4. Kareter H+ck işlevi buttons["Kareter H+ck"].MouseButton1Click:Connect(function() for _, target in ipairs(game.Players:GetPlayers()) do local head = target.Character:WaitForChild("Head") local billboard = Instance.new("BillboardGui") billboard.Size = UDim2.new(0, 200, 0, 50) billboard.Adornee = head billboard.Parent = head local textLabel = Instance.new("TextLabel") textLabel.Text = "XXXOMER12345678" textLabel.Size = UDim2.new(1, 0, 1, 0) textLabel.BackgroundTransparency = 1 textLabel.TextColor3 = Color3.fromRGB(255, 0, 0) textLabel.Font = Enum.Font.FredokaOne textLabel.TextScaled = true textLabel.Parent = billboard end game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("OMER MODS 🇹🇷👾", "All") game:GetService("StarterGui"):SetCore("SendNotification", { Title = "XXXOMER12345678 tarafından GUI yazılmıştır!"; Text = ""; Duration = 5; }) end) -- 5. Rakotsni işlevi buttons["Rakotsni"].MouseButton1Click:Connect(function() for _, target in ipairs(game.Players:GetPlayers()) do if target.Character and target.Character:FindFirstChild("Head") then local rocket = Instance.new("Part") rocket.Size = Vector3.new(1, 1, 1) rocket.Position = target.Character.Head.Position + Vector3.new(0, 5, 0) rocket.Shape = Enum.PartType.Ball rocket.BrickColor = BrickColor.new("Bright red") rocket.Anchored = true rocket.Parent = workspace rocket.Touched:Connect(function(hit) hit.Parent:Destroy() -- Roket değerse yok olur end) end end end) -- 6. Nuker Server işlevi buttons["Nuker Server"].MouseButton1Click:Connect(function() local skyboxIds = { "rbxassetid://122609059319189", "rbxassetid://79993652979956", "rbxassetid://114565596955424", "rbxassetid://114438311449423" } game.Lighting.Sky.SkyboxId = skyboxIds[math.random(1, #skyboxIds)] -- Ses çalacak local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://8680587619" sound.Volume = 838383 sound.Pitch = 0.5 sound.Parent = workspace sound:Play() -- Gökyüzü efekti local particleEmitter = Instance.new("ParticleEmitter") particleEmitter.Texture = "rbxassetid://122609059319189" particleEmitter.Size = NumberSequence.new(0.5, 1) particleEmitter.Parent = workspace -- Herkesin kafasında yazı olacak for _, target in ipairs(game.Players:GetPlayers()) do local head = target.Character:WaitForChild("Head") local billboard = Instance.new("BillboardGui") billboard.Size = UDim2.new(0, 200, 0, 50) billboard.Adornee = head billboard.Parent = head local textLabel = Instance.new("TextLabel") textLabel.Text = "OMER MODS" textLabel.Size = UDim2.new(1, 0, 1, 0) textLabel.BackgroundTransparency = 1 textLabel.TextColor3 = Color3.fromRGB(255, 0, 0) textLabel.Font = Enum.Font.FredokaOne textLabel.TextScaled = true textLabel.Parent = billboard end end) -- 7. EquipAll işlevi buttons["Equipall"].MouseButton1Click:Connect(function() for _, tool in ipairs(player.Backpack:GetChildren()) do if tool:IsA("Tool") then tool.Parent = character end end -- Kalp oluşturuluyor for i = 1, 10 do local part = Instance.new("Part") part.Shape = Enum.PartType.Ball part.Size = Vector3.new(1, 1, 1) part.Position = character.HumanoidRootPart.Position + Vector3.new(math.random(-5, 5), 5, math.random(-5, 5)) part.Anchored = true part.BrickColor = BrickColor.new("Bright red") part.Parent = workspace game:GetService("Debris"):AddItem(part, 5) end end)