Chapter 4
Q1. What is the role of the client and the server in the client-server model?
A: The client acts as a requester and the server is a provider and verifier.
Q2. What three script types are primarily used in Roblox development?
A: Scripts
(server-side), LocalScripts
, and ModuleScripts
.
Q3. What can you add at any line in your script to stop the program and examine its state?
A: A breakpoint.
Q4. What does FilteringEnabled
do?
A: It restricts clients from directly making changes to the experience that replicate to other clients; instead clients must make requests to the server via RemoteEvent
and RemoteFunction
.
Q5. What instances are used for communication between different script instances on the same side of the client-server model?
A: A BindableEvent
and BindableFunction
Q6. What high-level instances are used for organizing and adding more complex behaviors, additional events, and methods?
A: Services.
Q7. What services are...