Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local function findAndPrintRemoteEventPaths()
- local asd = false
- for _, descendant in ipairs(game:GetDescendants()) do
- if descendant:IsA("RemoteEvent") then
- print(descendant:GetFullName() .. "⚡")
- asd = true
- end
- end
- return asd
- end
- local asd = findAndPrintRemoteEventPaths()
- local player=game.Players.LocalPlayer
- local soundId
- local notificationTitle
- local notificationText
- if asd then
- soundId = "rbxassetid://17208361335"
- notificationTitle = "⚡RemoteEvents found!⚡"
- notificationText = "Press F9 or type '/console' in chat to open the Console."
- else
- soundId = "rbxassetid://4809574295"
- notificationTitle = "⚠️This game doesn't have any RemoteEvents⚠️"
- notificationText = "Let me put my huge ass cock in your pretty little hole my dear"
- end
- game:GetService("StarterGui"):SetCore("SendNotification", {
- Title = notificationTitle,
- Text = notificationText
- })
- local sound = Instance.new("Sound")
- sound.SoundId = soundId
- sound.Parent = player.Character or player:WaitForChild("Character")
- sound:Play()
Add Comment
Please, Sign In to add comment