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)
01 | local repStorage = game:GetService( "ReplicatedStorage" ) |
02 | local remote = repStorage:WaitForChild( "Remote" ) |
05 | local playercount = #game.Players:GetPlayers() |
06 | print ( "This is the player Count" ) |
09 | local req_num_players = 0 |
19 | print ( "Waiting for more players" ) |
21 | until playercount > = req_num_players |
22 | print ( "enough players detected" ) |
23 | print ( "Server Script passed the repeat until loop" ) |
25 | remote:FireAllClients( true ) |
Here is the local script
01 | local repStorage = game:GetService( "ReplicatedStorage" ) |
02 | local remote = repStorage:WaitForChild( "Remote" ) |
03 | print ( "local script is running" ) |
04 | remote.OnClientEvent:connect( function (decider) |
06 | print ( "Server passed decider as true" ) |
07 | loop_starter = decider |
10 | print ( "Server did not pass decider as true " ) |
15 | print ( "Checking for loop_starter value" ) |
The local script is in the starterplayerscripts
and I called the remove event "remote" in replicated storage
thx