Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -
- Download Here --> https://tinyurl.com/589dan33 (Copy and Paste Link)
- dehoisted/Chat-Spy
- This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Name already in use
- A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
- Sign In Required
- Please sign in to use Codespaces.
- Launching GitHub Desktop
- If nothing happens, download GitHub Desktop and try again.
- Launching GitHub Desktop
- If nothing happens, download GitHub Desktop and try again.
- Launching Xcode
- If nothing happens, download Xcode and try again.
- Launching Visual Studio Code
- Your codespace will open once ready.
- There was a problem preparing your codespace, please try again.
- Latest commit
- Git stats
- Files
- Failed to load latest commit information.
- README.md
- Roblox chat spy script to view all private messages.
- Script should work in basically every roblox game. Type "spy" to enable or disable the chat spy. Only tested if this works executed with Synapse (should work with other exploits though)
- About
- Roblox chat spy script to view all private messages
- exxtremestuffs/SimpleSpySource
- This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Name already in use
- A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
- Sign In Required
- Please sign in to use Codespaces.
- Launching GitHub Desktop
- If nothing happens, download GitHub Desktop and try again.
- Launching GitHub Desktop
- If nothing happens, download GitHub Desktop and try again.
- Launching Xcode
- If nothing happens, download Xcode and try again.
- Launching Visual Studio Code
- Your codespace will open once ready.
- There was a problem preparing your codespace, please try again.
- Latest commit
- Git stats
- Files
- Failed to load latest commit information.
- README.md
- SimpleSpy is a penetration testing tool designed to intercept remote calls from the client to the server.
- SimpleSpy is designed to be the "default" remote spy and built with minimal bloat, performance, and reliability in mind. You can find SimpleSpy in places such as Infinite Yield, CMD X, and more.
- Simple user interface
- Continuous support
- Included Remote-to-Script for arguments
- Improved stability and performance over alternatives
- To use SimpleSpy, just run the following code (or copy the code from SimplySpy.lua) in a supported executor.
- loadstring(game:HttpGet("https://github.com/exxtremestuffs/SimpleSpySource/raw/master/SimpleSpy.lua"))()
- SimpleSpy provides a few handy API functions show below.
- -- This is designed to convert any value into a variable, with the 2nd argument being the (optional) name of the variable. SimpleSpy:ValueToVar(value: any, name: string | nil): string -- This is designed to convert each individual index of a table of values into variables, with the (optional) index being the variable name. SimpleSpy:TableToVars(t: table): string -- This method can be used to quickly generate a string from a given value. This isn't recommended to be used with tables (though it does support them), since this will not generate the value as a variable. SimpleSpy:ValueToString(value: any): string -- This method is designed largely for internal use, but it can be used to generate SimpleSpy's iconic R2S scripts. SimpleSpy:ArgsToString(method: string, args: table): string -- This is used internally to generate a table of function info (basically debug.getinfo and debug.getconstants). Might be handy to use w/ getgc(). SimpleSpy:GetFunctionInfo(f: function): string -- This will directly hook any remote calls, you must return arguments as a table. SimpleSpy:HookRemote(remote: RemoteFunction | RemoteEvent, callback: (. args: unknown[]) => void): nil -- This will return a (functionally equivalent) ScriptSignal you can connect to remote calls with. See Roblox documentation for more info. SimpleSpy:GetRemoteFiredSignal(remote: RemoteFunction | RemoteEvent): ScriptSignal -- Prevents the specified remote from firing. SimpleSpy:BlockRemote(remote: RemoteEvent | RemoteFunction | string): nil -- Excludes the specified remote from logs SimpleSpy:ExcludeRemote(remote: RemoteEvent | RemoteFunction | string): nil
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement