I’m new to scripting. I’m trying to make a part in the workspace fire an event when a click detector is activated. From all I know, I cannot see if a clickdetector is pressed in a localscript, but I cannot FireServer from a script? Could anyone help?
Well, if you are doing the click event inside the server script then it might be easier to use without a remote event.
However, click detectors do work in local scripts.
If you are trying to signal other scripts on the server, consider bindable events.
There’s no need for a RemoteEvent, the ClickDetector’s MouseClick event provides a player argument of who clicked, you can read through the documentation for a better explanation.