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

Can you get the children of serverstorage in a fe game?

Asked by 6 years ago

Is there anyway for someone to access the children inside serverstorage in a filtering enabled game? Because if I'm making a game and I have my remotes in serverstorage I don't want exploiters to be able to just print the children and use the remotes.

0
You can only do that with a server script not a local script. Since ServerStorage is Server Side (Server-storage (duh!)) lol anyways if you're using a local script the best place is replicated storage, you're welcome hoped this helped! c; Unbunn_makes 48 — 6y

2 answers

Log in to vote
0
Answered by 6 years ago

I guess what you could also do (if you want to use ServerStorage that badly) is you could fire a server event to the server script which later fires a client event to the local script with server storage as a property then fire another event (that's inside server storage) and there, but it's too much of a hassle

0
Your answer doesn't make any sense, that wouldn't work. Avigant 2374 — 6y
Ad
Log in to vote
0
Answered by
Avigant 2374 Moderation Voter Community Moderator
6 years ago

Exploiters fundamentally always must have access to all your remotes, because if they do not, clients do not. Exploiters will ultimately always be able to intercept and fire any remotes with any arguments at any times. You should secure your network architecture.

If a client can't access a remote, they can't use it, but neither can the server.

RemoteEvents should go into game.ReplicatedStorage, preferably in a folder named Network or Remotes.

Answer this question