In the past few months of learning scripting, I always wonder... what does the ReplicatedStorage
and ReplicatedFirst
do? I’ve learned that they both store data. But other than that I’m still wondering what data they store? What are their differences beside being able to store data? And what kinds of data do you put in them? Please help me on this certain topic.
Thank you!
ReplicatedFirst
is for LocalScripts and things that need to be replicated to the client first. ReplicatedStorage
is just like ServerStorage
but all its children are replicated to all clients. ReplicatedStorage
is for things such as Remote Events/Remote Functions. Here are the articles on the Developer Hub relating to ReplicatedFirst and ReplicatedStorage.