Communicating with the Server
Take a look at one of Funkland’s core features: its ability to communicate with servers through messages.
Understanding FireEvent and GetTopic
-- When the client sends a FireEvent with the topic "Apple"
-- Display the message "Apple" to all clients.
Server.GetTopic("Apple").Add(function()
Server.SendCenterLabel("Apple")
end)
Client.FireEvent("Apple")Serialization Issues
1. Handling string and number types
2. Handling table types
3. Handling UserData Types
Last updated