From 2fa278b1c9a89c59733d2689e19daeb178f54aea Mon Sep 17 00:00:00 2001 From: pond2025l-afk Date: Wed, 8 Jul 2026 17:06:26 +0700 Subject: [PATCH] Create 111 --- 111 | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 111 diff --git a/111 b/111 new file mode 100644 index 00000000..473adb88 --- /dev/null +++ b/111 @@ -0,0 +1,23 @@ +local function testSeed(name) + local remotes = game:GetService("ReplicatedStorage"):FindFirstChild("Remotes") or game:GetService("ReplicatedStorage") + local buy = remotes:FindFirstChild("BuySeed") or remotes:FindFirstChild("PurchaseSeed") or remotes:FindFirstChild("BuyItem") + + if buy then + print("กำลังทดสอบเมล็ด: " .. name) + buy:FireServer(name) + task.wait(0.5) + else + warn("ไม่พบ Remote ซื้อเมล็ด") + end +end + +-- ทดสอบหลายชื่อ +testSeed("Carrot") +testSeed("Strawberry") +testSeed("Blueberry") +testSeed("Tomato") +testSeed("Mango") +testSeed("Mushroom") +testSeed("DragonFruit") +testSeed("Sunflower") +testSeed("Cherry")