-- [[ PHONK CLICKER ULTIMATE by rnghun ]] -- local P = game.Players.LocalPlayer local RS = game:GetService("ReplicatedStorage") local CG = game:GetService("CoreGui") -- Eski GUI temizleme if CG:FindFirstChild("RNGHubPhonk") then CG.RNGHubPhonk:Destroy() end _G.PhonkAuto = true -- Execute anında başlar local SG = Instance.new("ScreenGui", CG) SG.Name = "RNGHubPhonk" local M = Instance.new("Frame", SG) M.Size = UDim2.new(0, 220, 0, 130) M.Position = UDim2.new(0.5, -110, 0.2, 0) -- Biraz yukarı aldım M.BackgroundColor3 = Color3.fromRGB(10, 10, 10) M.BorderSizePixel = 2 M.BorderColor3 = Color3.fromRGB(255, 0, 255) -- Neon Phonk Rengi M.Active = true M.Draggable = true local T = Instance.new("TextLabel", M) T.Size = UDim2.new(1, 0, 0, 35) T.Text = "PHONK CLICKER 🎵" T.BackgroundColor3 = Color3.fromRGB(255, 0, 255) T.TextColor3 = Color3.fromRGB(255, 255, 255) T.Font = Enum.Font.GothamBold T.TextSize = 14 local S = Instance.new("TextLabel", M) S.Size = UDim2.new(0, 100, 0, 20) S.Position = UDim2.new(1, -105, 1, -22) S.BackgroundTransparency = 1 S.Text = "by rnghun" S.TextColor3 = Color3.fromRGB(150, 150, 150) S.Font = Enum.Font.Code S.TextSize = 11 S.TextXAlignment = Enum.TextXAlignment.Right local btn = Instance.new("TextButton", M) btn.Size = UDim2.new(0, 200, 0, 45) btn.Position = UDim2.new(0, 10, 0, 50) btn.Text = "AUTO PHONK: ON" btn.Font = Enum.Font.GothamBold btn.BackgroundColor3 = Color3.fromRGB(0, 200, 100) btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.BorderSizePixel = 0 btn.MouseButton1Click:Connect(function() _G.PhonkAuto = not _G.PhonkAuto btn.Text = "AUTO PHONK: " .. (_G.PhonkAuto and "ON" or "OFF") btn.BackgroundColor3 = _G.PhonkAuto and Color3.fromRGB(0, 200, 100) or Color3.fromRGB(50, 50, 50) end) -- ANA OTOMASYON task.spawn(function() while task.wait(0.01) do if _G.PhonkAuto then pcall(function() -- 1. YÖNTEM: Phonk Clicker'daki muhtemel tüm Remote isimlerini zorla ateşle for _, v in pairs(RS:GetDescendants()) do if v:IsA("RemoteEvent") then local n = v.Name:lower() if n:find("click") or n:find("tık") or n:find("add") or n:find("press") or n:find("note") then v:FireServer() end end end -- 2. YÖNTEM: Ekrandaki en büyük butona (genelde tıklama butonudur) otomatik bas local pg = P:WaitForChild("PlayerGui") for _, b in pairs(pg:GetDescendants()) do if (b:IsA("ImageButton") or b:IsA("TextButton")) and b.Visible then -- Eğer butonun boyutu büyükse veya ismi tıklamayla ilgiliyse if b.Size.X.Offset > 100 or b.Name:lower():find("click") then firesignal(b.MouseButton1Click) end end end end) end end end)