Where's the best place to store BindableEvent / BindableFunction

As a new scripter. I am confused on which place is the best place to store bindable stuff. Right now im storing my bindable on ServerScriptService. Since it only readable for server.

Does storing it in ReplicatedStorage or ServerScriptService have any difference?

2 Likes

Well it depends on which script is using it. If a regular script is using it, then you should store the bindables in server storage. If local scripts are using it, then store it in replicated storage.

Storing it in replicated storage means that the client can see what is in it. But the client can’t change the bindables that the server uses

12 Likes

Since the BindableEvent isn’t a script, you probably shouldn’t store it in ServerScriptService. If you really care about just the server being able to see it then you can move it to ServerStorage. It shouldn’t cause any issues if you keep it in ReplicatedStorage, though.

5 Likes