Lembardon

Unsecure Remote Event Events finder roblox

Dec 25th, 2024
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.10 KB | Gaming | 0 0
  1. local function findAndPrintRemoteEventPaths()
  2.     local asd = false
  3.     for _, descendant in ipairs(game:GetDescendants()) do
  4.         if descendant:IsA("RemoteEvent") then
  5.             print(descendant:GetFullName() .. "⚡")
  6.             asd = true
  7.         end
  8.     end
  9.     return asd
  10. end
  11.  
  12. local asd = findAndPrintRemoteEventPaths()
  13. local player=game.Players.LocalPlayer
  14. local soundId
  15. local notificationTitle
  16. local notificationText
  17. if asd then
  18.     soundId = "rbxassetid://17208361335"
  19.     notificationTitle = "⚡RemoteEvents found!⚡"
  20.     notificationText = "Press F9 or type '/console' in chat to open the Console."
  21. else
  22.     soundId = "rbxassetid://4809574295"
  23.     notificationTitle = "⚠️This game doesn't have any RemoteEvents⚠️"
  24.     notificationText = "Let me put my huge ass cock in your pretty little hole my dear"
  25. end
  26. game:GetService("StarterGui"):SetCore("SendNotification", {
  27.     Title = notificationTitle,
  28.     Text = notificationText
  29. })
  30. local sound = Instance.new("Sound")
  31. sound.SoundId = soundId
  32. sound.Parent = player.Character or player:WaitForChild("Character")
  33. sound:Play()
Add Comment
Please, Sign In to add comment