Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to detect when a notification pops up?

Asked by 3 years ago

WeAreDevs exploits like JJSploit have a notification pop up on the bottom right corner when you inject it.

Like this: https://i.ibb.co/qdLNyX0/Untitled.png

My game doesn't make use of this feature so how would I detect if a notification pops up so I could prevent some exploiters.

1 answer

Log in to vote
0
Answered by 3 years ago

The notification that is used by JJSploit is built into the CoreGui service, therefore it cannot be detected with any Studio-made scripts as indexing any of these services will throw The current identity (2) cannot Class security check (lacking permission #). If you're curious -- nowadays, most exploits run at Roblox level, meaning that scripts and GUIs are hidden in private services and there's little to no chance of detecting them unless an error occurs on the exploiter's end.

In conclusion: you don't detect if a notification pops up. Even if you found a way to sniff out oddly created instances and wrote a script to delete them, it would be patched within days if not hours. Keep in mind that a player has full control over their client and the way it behaves, and therefore they can immediately delete, let's say, a LocalScript that's supposed to check for unusual client activity; there's no real way of stopping an exploiter other than having Server-sided checks.

0
On a side note: trying to patch these notifications would be an awful idea, mainly because some common Roblox features often make use of them (e.g. friend requests; the prompt is a notification with two callbacks). SimplyConst 0 — 3y
Ad

Answer this question