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

how to fix problem regarding remove events?

Asked by 5 years ago
Edited 5 years ago

I have a problem with a script regarding remote events (events are actually just slamming me at this point lol)

Here is the script I'm using to fire the local script (bc this is a server script)

01local repStorage = game:GetService("ReplicatedStorage")
02local remote = repStorage:WaitForChild("Remote")
03 
04-- Variables
05local playercount = #game.Players:GetPlayers()
06print("This is the player Count")
07print(playercount)
08 
09local req_num_players = 0 
10 
11 
12 
13--while true do
14    wait()
15 
View all 30 lines...

Here is the local script

01local repStorage = game:GetService("ReplicatedStorage")
02local remote = repStorage:WaitForChild("Remote")
03print("local script is running")
04remote.OnClientEvent:connect(function(decider)
05    if decider then
06        print("Server passed decider as true")
07        loop_starter = decider
08        return loop_starter
09    else
10        print("Server did not pass decider as true ")   
11    end       
12 
13end)
14 
15print("Checking for loop_starter value")
16print(loop_starter)

The local script is in the starterplayerscripts and I called the remove event "remote" in replicated storage

thx

0
is the printing nil the problem that you're having? ThisIsAnAccount255 143 — 5y
0
I don't know, I just can't fire the local script. JackTheGamer44666 18 — 5y
0
It's working perfectly fine for me ThisIsAnAccount255 143 — 5y
0
your post said that the event was called "remote". Is it called "remote" or "Remote"? ThisIsAnAccount255 143 — 5y
0
Sorry, case sensitivity JackTheGamer44666 18 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago

Your mistake is that your scripts are trying to find ReplicatedStorage.Remote. While your remote is at ReplicatedStorage.remote.

0
lmao TheluaBanana 946 — 5y
Ad

Answer this question