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

How i generate a map using filtering enabled ?

Asked by 6 years ago

I did a simple map generation , but my game is filtering enabled. If i try to fire from Client To server , one map is created for each player in server , if i fire from Server from client , it just dont work. The game dont let me fire from server to server or client to client now i dont know what i do.

Resume : How i can one generate my map for the server using a script from Replicated Storage.

0
Try to use remote events Leamir 3138 — 6y
0
I am using remotes. Rodrigo2003 76 — 6y

1 answer

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

You seem to already have a Map Generating script but haven't shown us your attempts so I can only help you by recommending certain things.

First of all, I don't see why FilteringEnabled (FE) matters in this problem. You can easily use a Script in ServerScriptService to generate a map on the server which will then be replicated by Roblox to all clients. Remember, FE only affects client-to-server and server-to-client connections. If code runs on the server, then it will be replicated to all clients, FE or not. Code only on a client will not appear to other clients or the server, besides oneself.

Here is a link that may help you understand RemoteFunctions and RemoteEvents

Ad

Answer this question