By this point I don’t know what’s the problem with me and remote events anymore. Last time I made a post saying two of my remote event (that shows up GUI) only firing once; well, all I needed to do was just to put the same remote event at the end of the script so it will reappear again in intermission. But the problem now is that one remote event is not working somehow, but the other remote event is working, even though those two have the exact same scripts inside of them. Can someone tell me what I have done wrong? If you need more pictures of my script feel free to ask me.
oh and i have used these set of remote events at the beginning of the script and it works just fine, but now those remote events are getting used a second time and one of them isn’t working (the ES one), that’s some extra information if you need em.
I am confused on what you’re doing, but from what I understand you’re connecting the same remote event multiple times? Without disconnecting the previous instance? and furthermore, you’re not using arguments at all?
Why would you use two separate events to toggle a button when remote events are intended to be used like this?
SS.OnClientEvent:Connect(function(boolean) --true or false value
button.Visible = boolean --either true or false
end)
--[[From the serverscript]]
SS:FireAllClients(true) --sets the button visible for all
SS:FireAllClients(false) --sets it invisble
i have just done what you have just said for me to do but the problem is still not solved yet. One of the remote event is still not firing unfortunately