From 1f9ae004f4748b0667f0c56e3925e9617c17dcb3 Mon Sep 17 00:00:00 2001 From: khtsly Date: Sat, 11 Apr 2026 18:12:23 +0700 Subject: [PATCH] chore(docs): add .awaitReady() --- docs/guide/example.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/guide/example.md b/docs/guide/example.md index 6c66a91..06e416b 100644 --- a/docs/guide/example.md +++ b/docs/guide/example.md @@ -40,6 +40,8 @@ local Players = game:GetService("Players") local Warp = require(path.to.warp).Client() local Schemas = require(path.to.schemas) +Warp.awaitReady() -- this is optional, but recommended if facing any issues with race-condition, or remotes not registered + -- Use schemas for eventName, schema in Schemas do Warp.useSchema(eventName, schema)