Exploiter inserting admin into game

so this guy keeps injecting admin into my game and also bypassing Roblox chat filter and I’ve check all my remotes and all my scripts and notting can cashed this from what I’ve found because my remotes only move text from Client to server

Someone who is willing to help reply with a good solution please

2 Likes
Banned = {

p1 = "OhCreo"

}

MsgTemplate = "You've been banned forever from this game. You've been caught exploiting. Please DO NOT do it again."

game.Players.ChildAdded:Connect(function(newPlr) --Playeradded doesn't want to respond to me sometimes.

if newPlr.Name == Banned.p1 then --String match didnt work.

newPlr:Kick(MsgTemplate)

end

end)

this script doesn’t even use the banned list you created, it just kicks everyone named Creo when they join

string.match dosen’t even work i have no idea how to use it

it takes 2 arguments, the string you’re looking in and the “pattern”, what you want to find

Do i have to paste the code again just in case?

no searching for just a part of a name is bad if someone else named Creo joins

1 Like

you probably have a backdoor in your game from some random free model, you can use control + shift + f to search every script in your game at the same time, then start looking for keywords

a couple keywords are
require
eriuqer
getfenv
loadstring
load

but, there are ways to insert objects without using these keywords
for this, you can search for “UGCService”, I believe this is where most of the bypasses originate from

1 Like

Yea I said I need real solutions I’ve already check all of that and I made all my models and scripts

I alr banned them but that doesn’t stop them from making it useing an alt

They are still ABLE TO INSERT HD ADMIN AND MY GAME DOESNT EVEN HAVE ANYTHING THAT CAN BE USED TO INJECT THIS CRAP

What are they doing with the admin?

They are injecting HD admin and changing the whole game


What commands are they running? Most commands can be detected with scripts.

Sorrfy for being unclear.

Look at the images note I have no free admin or models

I believe it’s because if this

I don’t have my computer so I can’t write it right now, but I had an idea. HD admin needs the roblox chat system and creates guis to work. It may be an inconvenience, but you could create or find a trusted custom chat system and disable default chat, then create a script that detects if there are any HD Admin guis and deletes them if so.

All of the suggestions here would probably work fine and solve the issue, but it’s like putting a bandaid on a massive cut. You’re not fixing the route problem, all you’re doing is simply fixing HD Admin from being inserted rather than fixing the mechanism that actually allows HD Admin to be inserted in the first place.

A couple things you could check:

  • Is Loadstring enabled? Might want to turn that off. ServerScriptService > Properties > LoadStringEnabled > set to false.

  • Do any of your remotes allow for anything whatsoever to be required from an id parameter? If so you might want to only allow certain IDs.

If both of these are false than it’s almost certain your game has a backdoor of some kind. If you’re 100% sure it’s not however and you really think it’s an issue with remotes, you could attempt to log all FireServers as well as the parameters fired with them and see what is fired in the server whenever injection occurs.

1 Like

he either uses bypassing russia methods or its roblox chat filter bugs

Or, it could be that both accounts are over 13. The chat filter is now less restrictive when you’re over 13.