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

Is there *any* time an exploiter could access ServerScriptService/ ServerStorage?

Asked by 3 years ago

My friend told me some paid exploits are able to access ServerScriptService/ ServerStorage, although I thought these were untouchable to explotiers in all cases. I asked him to show me with an exploit he owns, which didn't work, but he said that was because he didn't have one of the good ones.

If they can be accessed, how come you don't see leaked server scripts from games more often? When I asked him that he said that there are in fact leaked server scripts if you look hard enough, but I didn't see any myself.

1
As an ex-exploiter, I can verify, it is possible but isn't easy to access ServerScriptService and ServerStorage I believe. I quit exploiting a long time ago since then so I don't know if it improved since then. AustonGames -10 — 3y
0
Was that before FilteringEnabled was forced on all games? NoahsRebels 99 — 3y
3
I'm pretty sure you need a backdoor on the server to access ServerStorage or ServerScriptService from the client. If you don't then I'm pretty sure it is impossible. I'm not answering because I'm not too sure. AnonymouseCow 23 — 3y
2
It is impossible without a backdoor; no exploit, including paid is capable of doing so unless a backdoor is manually inserted via plugin malware, an undisclosed program written by an affiliate of the game owner, or illegal hacking of a ROBLOX server. Ziffixture 6913 — 3y
View all comments (2 more)
2
I am an exploit writer, though mainly for practice and expansion of knowledge. I understand it's placement in Filtering Enabled situations, as well as general Client-Server communications. I can assure you it's not possible without the scenarios listed above. Ziffixture 6913 — 3y
0
Sorry for the late response - thank you to all the people who answered, I was quite suspicious (even a bit worried) about the claim and it's good to be reassured. NoahsRebels 99 — 3y

1 answer

Log in to vote
0
Answered by 3 years ago

It is possible, unless you kick the exploiter. You can use scripts like:

local player = game.Players.LocalPlayer
local character = player.Character

if Character.Humanoid.WalkSpeed > 20 then  --If the user's walk speed is more than usual
    player:Kick("You were kicked because of exploiting")
end

if Character.Humanoid.JumpPower > 60 then --If the user's jump power is more than usual
    player:Kick("You were kicked because of exploiting")
end
Ad

Answer this question