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

how to stop someone from executing an exploit in my Roblox game?

Asked by 6 years ago
Edited 6 years ago

How would i stop an exploiter from using a kill all script in my game and if they tried it would kick them from the game.I honestly don`t even know how to compile it in a script i have ban scripts but i want it were they can make a new account and still cant use the exploit again my game?

so prisman the creator of Assassin went to me and wanted to know if it was possible to kick someone who used a kill all script i just dont even know were to start he has FE and most exploits don`t work he just doesnt know how to do this so he wanted me to figure it out because hes really busy.

0
try to make a script that blocks a script when it enters your place memberhero95 -16 — 6y
1
Enabling "FilteringEnabled" under Workspace in studio will prevent client changes from being made to the server. That said, exploiters wont have the ability to "kill all". They would still have client abilities (EX: Upgraded Walkspeed). You could easily check if some of these client properties have been changes, and kick them, however, this is not a request forum and I will not treat it as one. Thetacah 712 — 6y
0
Edit: thetacah beat me to the punch.  might seem like an odd question but: have you ever ACTUALLY HAD someone use a kill script in your game? Most often, security concerns can be handled by learning how to script with experimental mode off. It's much harder for an exploiter to use a kill script when filteringenabled is on. DropshipPilot 148 — 6y

3 answers

Log in to vote
0
Answered by
Shadrz 40
6 years ago
Edited 6 years ago

It is quite easy making your game harder to exploit. Here's how you do it.

game.Players.PlayerAdded:connect(function(plr)
    plr.ChildAdded:connect(function(c)
        if c:IsA('LocalScript') and c.Parent == plr then
            print(plr.Name .. ' was caught exploiting, kicking...')
            plr:Kick('Kick: Do not Exploit')
        end
    end)
end)

If you are unaware on how this works, here's how it works.

So, when a player executes a script they get kicked. Trust me, I know how level 7s work. I had actually downloaded one so I can prevent exploiters from exploiting.

Keep in mind that exploiters at the moment are unable to execute Server scripts, so this cannot be deleted most of the time.

Ad
Log in to vote
0
Answered by
stardon 12
6 years ago

You would have to use FilteringEnabled so they can’t “exploit”. (Send arbitrary code to the server and other clients) I recommend researching how to use Remote Events and Functions, because some things might break in your game after you enable Filtering that have to be fixed with Remote Events and Functions.

0
If your unaware it is quite easy making scripts unable to be executed. Shadrz 40 — 6y
Log in to vote
-1
Answered by 3 years ago

wertfdhqearthbaeqr3hb5aheh

0
FUCKER stevenfury91 -17 — 3y
0
That is not a valid answer. Stop posting answers that have nothing to do with the question. JesseSong 3916 — 3y
0
If you keep posting irrelevant information then you'll be suspended. JesseSong 3916 — 3y

Answer this question