Having Problems With Firing Remote Event

Hi Developers!
So Today i was makng ToH Tower Generator And Used Remote Event

So in Script i did :FireAllClients() Its Firing But Remote Event Function not doing
In my Script i did

wait()
game.ReplicatedStorage.TowerFunction:FireAllClients()
print(“Remote Event Just Fired!”)

And in ServerScriptService i did the Function But Basicly it doesnt do anything when it fires.

Edit: And no any errors in Output

1 Like

Are you trying to use a remote event to communicate between server scripts? They only work for client > server, server > client and server > all clients communication.

If you need to communicate between scripts you can use modulescripts or bindable events. You can also create your own eventclass with module scripts.

Yes And the Script is in StarterGui In Timer Gui So when timer is 0:00 then That Function will be

Nevermind Guys i made Everything now works Fine Anyways Thanks for Info