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

Can exploiter disable localscript?

Asked by
zeptak 4
4 years ago

Hi, I have problems with exploiters in my game, so I have to create some antiexploit. But I have problem that some things are happening just locally. So, can an exploiter disable or delete localscript? ( I would make localscript that would kick the player.. )

0
Anything that happens on the client side will not have an affect on other player's or the server. Just the player that is exploiting. A way to fix this is to have a server script run everytime a player joins and use a while loop checking for abnormalities in their character or player's behavior. killerbrenden 1537 — 4y
0
I just need to know that if a client-side antiexploit can be disabled by the exploiter zeptak 4 — 4y
0
If it is in the Workspace, you can enable "FilteringEnabled" which makes it not able for the player to access and change stuff in the Workspace 6zk8 95 — 4y

1 answer

Log in to vote
0
Answered by 4 years ago
Edited 4 years ago

Explanation

Exploits are usually client sided, I highly doubt that exploiters could disable local scripts through some kind of heavy exploit but you should be fine as it will not affect the player but the exploiter itself. An example would be if an exploiter is using Btools for glitching through walls, other players would not see the affects of the exploiter as it will be client sided.

What you can do is make a script that will check the player's humanoid or character for anything sketchy, if it does then it will kick that certain player.

Solution

game.Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function(Character)
if player.Backpack:FindFirstChild("Btools") then -- You change Btools to the name of the exploit..
player:kick()

end
end)
end)

Solution 2

game.Players.PlayerAdded:Connect(function(player)
if player.Name == "ShedletSky" then -- Change ShedletSky to the name of the exploiter
player:kick()
end
end)

I hope this helps and please up vote this answer if it did so..

0
ok thanks zeptak 4 — 4y
0
Yes but the Btools tool can be names anything, so the name in that ("Btools") wont work 6zk8 95 — 4y
0
For that. You will need to check for the player's backpack :) SilentsReplacement 468 — 4y
0
And the name of the exploit in the player's backpack.. SilentsReplacement 468 — 4y
0
You can also check for abnormalities and use a whitelist for their backpack, if something is in there that's not supposed to be, then kick them. killerbrenden 1537 — 4y
Ad

Answer this question