|
| 19 Nov 2014 03:44 PM |
| So what are the Replicated First, Replicated Storage, Server Script Service, Server Storage and the plugins used for? |
|
|
| Report Abuse |
|
|
|
| 19 Nov 2014 03:59 PM |
ServerStorage is where you store instances that only the server needs. Clients cannot access it.
ServerScriptService is where you use and run scripts. Clients cannot read from this, so this prevents script theft.
ReplicatedFirst is where you put GUIs and stuff to replicate to the client before anything else, primarily for custom loading GUIs.
ReplicatedStorage is where you put instances that the client and possibly server need.
Lighting is deprecated for storage, by the way. |
|
|
| Report Abuse |
|
|
|
| 19 Nov 2014 04:25 PM |
| So why would there be any need for them? |
|
|
| Report Abuse |
|
|
Procellus
|
  |
| Joined: 28 Oct 2014 |
| Total Posts: 1525 |
|
|
| 19 Nov 2014 04:27 PM |
"So why would there be any need for them?"
Lighting is a hack ReplicatedFirst & StarterPlayer makes stuff easier storage is important |
|
|
| Report Abuse |
|
|
|
| 19 Nov 2014 04:41 PM |
| So would it still be sake to not use them? |
|
|
| Report Abuse |
|
|
| |
|
eLunate
|
  |
| Joined: 29 Jul 2014 |
| Total Posts: 13268 |
|
|
| 19 Nov 2014 05:14 PM |
ServerScriptService is a good place for anything running authoritative logic. ServerStorage is a good place for stuff you need unloaded, or not given to the client until it is needed (Speeds up connection times) ReplicatedStorage is for anything that is used over and over in both the client and server. Mostly designed to replace Lighting for storage. |
|
|
| Report Abuse |
|
|