Simple Jenga Script Jun 2026

-- Simple Jenga Script (placed in ServerScriptService)

-- Example click detection (simplified – use ClickDetectors) for _, block in ipairs(tower:GetChildren()) do local detector = Instance.new("ClickDetector") detector.Parent = block detector.MouseClick:Connect(function(player) if player.Name == currentPlayer then removeBlock(block) else print("Wait for your turn, " .. player.Name) end end) end Simple Jenga Script