To further explain what I’m asking, you know anti-cheat scripts like the following:
local walkspeed = game.Players.LocalPlayer.Character.Humanoid.Walkspeed
if walkspeed >= 16 then
walkspeed = 16
end
As these work, I’ve also heard that exploiters can easily delete that script. And this is where I get confused, and a little worried.
How exactly do they delete your script? And if they do, does it mean they have access to your entire game (meaning they could delete all the parts)? That’s where I’m getting confused.
If anyone could further explain, that would be very helpful, thank you!
Exploiters have access to anything local, or client sided, as it is their computer. They cannot access Roblox’s servers. This is a local script that they can just delete from their client.
They only remove things client side, when they do that, it’s just for them, unless they use a RemoteEvent that isn’t protected, to use things on the server.