From 2213c473501c537ff77235c7f23f795ef25bd8e1 Mon Sep 17 00:00:00 2001 From: hoontee Date: Tue, 5 Nov 2024 23:57:28 -0600 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0d26945..520e30b 100644 --- a/README.md +++ b/README.md @@ -183,11 +183,11 @@ end) ```lua -- On Client -Remotes.Client.ExampleServerModule.TableCounted:Connect(function(playerName: string) - Print(playerName, "requested a Table to be counted.") -end) - function ExampleClientModule:Deferred() + Remotes.Client.ExampleServerModule.TableCounted:Connect(function(playerName: string) + Print(playerName, "requested a Table to be counted.") + end) + Print(Remotes.Client.ExampleServerModule:CountTable({"A", "B", "C"})) end ```