Serverstorage vs ReplicatedStorage in relation to tools

So I want to clarify this doubt once and for all: I’ve been thinking about a mechanic of giving tools using remoteevents, only I don’t know where is the best place to store tools, on serverstorage or replicatedstorage?

2 Likes

I would use ReplicatedStorage.

2 Likes

Gonna post this here also,

ServerStorage is Server only.
ReplicatedStorage is for server and clients.

1 Like

Presumably, you would use ServerStorage for instances that you don’t want clients to have access to, while using ReplicatedStorage for things that you would want the clients to always have access to.

Because the use of tools requires all instances to be replicated, it really doesn’t matter where you place them.

2 Likes

I selected this answer because it is the most correct and thanks