-- GUI Ayarları local player = game.Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") local gui = Instance.new("ScreenGui") gui.Name = "42AboneÖzelGui" gui.ResetOnSpawn = false gui.Parent = playerGui local mainFrame = Instance.new("Frame") mainFrame.Size = UDim2.new(0.6, 0, 0.7, 0) mainFrame.Position = UDim2.new(0.2, 0, 0.15, 0) mainFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 0) -- Sarı arka plan mainFrame.BorderSizePixel = 2 mainFrame.Active = true mainFrame.Draggable = true -- Sürüklenebilir mainFrame.Parent = gui local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0.1, 0) title.BackgroundColor3 = Color3.fromRGB(255, 255, 255) -- Beyaz title.Text = "42 Abone Özel GUI - Localqw6 and xxxomer12345678" title.TextScaled = true title.Font = Enum.Font.SourceSansBold title.TextColor3 = Color3.fromRGB(0, 0, 0) title.Parent = mainFrame local closeButton = Instance.new("TextButton") closeButton.Size = UDim2.new(0.1, 0, 0.1, 0) closeButton.Position = UDim2.new(0.9, 0, 0, 0) closeButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0) closeButton.Text = "X" closeButton.TextScaled = true closeButton.TextColor3 = Color3.fromRGB(255, 255, 255) closeButton.Font = Enum.Font.SourceSansBold closeButton.Parent = mainFrame closeButton.MouseButton1Click:Connect(function() gui:Destroy() end) -- İşlev Eklemek için Yardımcı Fonksiyon local function createButton(parent, position, size, text, color, callback) local button = Instance.new("TextButton") button.Size = size button.Position = position button.BackgroundColor3 = color button.Text = text button.TextScaled = true button.Font = Enum.Font.SourceSansBold button.TextColor3 = Color3.fromRGB(0, 0, 0) button.Parent = parent button.MouseButton1Click:Connect(callback) return button end -- Glich Butonu createButton(mainFrame, UDim2.new(0.55, 0, 0.2, 0), UDim2.new(0.4, 0, 0.1, 0), "Glich Butonu", Color3.fromRGB(128, 0, 128), function() if player.Character then local char = player.Character local head = char:FindFirstChild("Head") -- Sohbete Mesaj game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer( "XXXOMER12345678 GLİCH !?!?!?!?", "All" ) -- Kırmızı Ateş Efekti if head then local redFire = Instance.new("Fire", head) redFire.Color = Color3.fromRGB(255, 0, 0) -- Kırmızı redFire.SecondaryColor = Color3.fromRGB(255, 128, 128) redFire.Size = 5 wait(5) redFire:Destroy() -- Siyah Ateş Efekti local blackFire = Instance.new("Fire", head) blackFire.Color = Color3.fromRGB(0, 0, 0) -- Siyah blackFire.SecondaryColor = Color3.fromRGB(50, 50, 50) blackFire.Size = 5 wait(5) blackFire:Destroy() end -- Kırmızı ve Siyah El Parlama Efekti local leftHand = char:FindFirstChild("LeftHand") or char:FindFirstChild("Left Arm") local rightHand = char:FindFirstChild("RightHand") or char:FindFirstChild("Right Arm") local function createGlow(part, color) local glow = Instance.new("ParticleEmitter", part) glow.Texture = "rbxassetid://241594419" -- Örnek doku glow.Color = ColorSequence.new(color) glow.Size = NumberSequence.new(1) glow.Lifetime = NumberRange.new(1) glow.Rate = 20 wait(7) glow:Destroy() end if leftHand then createGlow(leftHand, Color3.fromRGB(255, 0, 0)) -- Kırmızı end if rightHand then createGlow(rightHand, Color3.fromRGB(0, 0, 0)) -- Siyah end end end) -- Ekstra Buton: Animasyon createButton(mainFrame, UDim2.new(0.55, 0, 0.35, 0), UDim2.new(0.4, 0, 0.1, 0), "Animasyon Test", Color3.fromRGB(0, 255, 255), function() if player.Character then local anim = Instance.new("Animation") anim.AnimationId = "rbxassetid://507771019" -- Örnek animasyon ID local humanoid = player.Character:FindFirstChild("Humanoid") if humanoid then local track = humanoid:LoadAnimation(anim) track:Play() wait(3) track:Stop() end end end) -- Ekstra Buton: Ses Efekti createButton(mainFrame, UDim2.new(0.55, 0, 0.5, 0), UDim2.new(0.4, 0, 0.1, 0), "Ses Test", Color3.fromRGB(255, 128, 0), function() local sound = Instance.new("Sound", playerGui) sound.SoundId = "rbxassetid://1839246711" sound.Volume = 10 sound.Pitch = 0.5 sound:Play() wait(5) sound:Destroy() end)