How to Fire Server Event from server script

So I want to fire a remote event to a server script, from a server script, however it does not allow me to, giving me the error “FireServer can only be called from the client”. How can I accomplish what I want to?

You can’t fire remote event for Server to Server. You have to use bindable events.

6 Likes

Thanks! However, I do not understand what this means: “An event can only be subscribed to by one other script at a time. When a second script subscribes to an already subscribed event, the first script will be unsubscribed.” Does it mean that when the event is fired, it can only be detected by one script?

Thank you! I almost made my whole game using just RemoteEvents. I didn’t know BindableEvents were a thing but they look so easy to use.